Created
December 30, 2014 03:47
-
-
Save wrobstory/37ca1bf34174b3ddf6cc to your computer and use it in GitHub Desktop.
Numerics wat
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 characters
scala> if (true) { 2 } | |
res1: AnyVal = 2 | |
scala> if (true) { 2 } else { 3.0 } | |
res2: Double = 2.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment