Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 178 Bytes

closures.md

File metadata and controls

15 lines (12 loc) · 178 Bytes

Closures

1. Hilangkan tipe pengembalian Void dari definisi fungsi.

// WRONG
func doSomething() -> Void {
    ...
}

// RIGHT
func doSomething() {
    ...
}