Peter Mandeljc
05/03/2022, 4:07 PMopen fun x() = Unit
B. open fun x() { }
Fleshgrinder
05/03/2022, 4:19 PMopen fun x() {
// Intentionally left blank.
}
ephemient
05/03/2022, 4:24 PMIf a function returns Unit, the return type should be omitted:
```fun foo() { // ": Unit" is omitted here
}```
ephemient
05/03/2022, 4:25 PMFleshgrinder
05/03/2022, 4:26 PM