Swift Programming Language

31 thoughts
last posted Aug. 6, 2014, 9:41 p.m.

18 earlier thoughts

0

Is it always possible to write:

function name(inputs) -> output {
    body
}

as

name = {
    (inputs) -> output in 
    body
}

?

12 later thoughts