Created
December 4, 2015 15:29
-
-
Save dickwyn/f312a7430d1da35a5b0c 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
/* this is a comment */ | |
var firstString = "Hello World"; | |
print(firstString); | |
/* multiplication! */ | |
var computePower = 7 | |
var coreNumber = 8 | |
var totalPower = computePower * coreNumber | |
print(totalPower) | |
/* it also accepts unicode characters */ | |
var 你好 = "我很好" | |
print(你好); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment