Skip to content

Instantly share code, notes, and snippets.

@dickwyn
Created December 4, 2015 15:29
Show Gist options
  • Save dickwyn/f312a7430d1da35a5b0c to your computer and use it in GitHub Desktop.
Save dickwyn/f312a7430d1da35a5b0c to your computer and use it in GitHub Desktop.
/* 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