Does anyone know if there is a way to use some kind shorthand in swift? more specifically, leaving out the braces in things like IF statements... eg
if num == 0
You could always put the entire if on one line:
if
if num == 0 { temp = 0 }