Created
February 19, 2018 12:17
-
-
Save vialyx/223b03fe21559203ad692ad55fd6294b to your computer and use it in GitHub Desktop.
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
let decimalInteger = 17 | |
let binaryInteger = 0b10001 // 17 in binary notation | |
let octalInteger = 0o21 // 17 in octal notation | |
let hexadecimalInteger = 0x11 // 17 in hexadecimal notation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment