(no title)
bitpew | 11 years ago
1) Function Types ( = higher order functions)
This allows functions to be passed around as function parameters or return values.
2) Immutable variables via let
let a = 1 // a is always bound to the constant 1
a = 2 // error
unknown|11 years ago
[deleted]
ktran03|11 years ago
Excerpt From: Inc, Apple. “The Swift Programming Language.” Apple Inc.
Check out this book on the iBooks Store: https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewBook?...
unknown|11 years ago
[deleted]
emsy|11 years ago