Last active
December 17, 2017 21:20
-
-
Save tmm/a3ecbe903496381ab1ee to your computer and use it in GitHub Desktop.
Revisions
-
tmm revised this gist
Dec 17, 2017 . No changes.There are no files selected for viewing
-
tmm revised this gist
Apr 29, 2016 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ var a = 5 var b = 3 a += b b = a - b a = a - b print("a: \(a)") // 3 print("b: \(b)") // 5 -
tmm created this gist
Oct 29, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ var a = 100 var b = -12 a += b b = a - b a = a - b print("a: \(a)\n") print("b: \(b)\n")