Peter Mandeljc
open fun x() = Unit
open fun x() { }
Fleshgrinder
open fun x() { // Intentionally left blank. }
ephemient
If a function returns Unit, the return type should be omitted:
```fun foo() { // ": Unit" is omitted here
}```
A modern programming language that makes developers happier.