Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 361 Bytes

CONTRIBUTING.md

File metadata and controls

20 lines (12 loc) · 361 Bytes

Contributing

Contributions are very welcome.

Pull requests:

  • Use number in functions and constructions in stead of Double!
external class MyClass(
  speed: Number // Number, this way we dont have to write e.g. 0.0 when calling it 
) {

  val speed: Double // Double is OK here
  
  fun setSpeed(speed: Number) //again, use Number 
  
}