Created
December 13, 2012 09:37
-
-
Save anonymous/4275282 to your computer and use it in GitHub Desktop.
A simplistic introduction into programming.
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
15 | |
-1 | |
4.39010 |
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
"Holla!" | |
"You can observe a lot by watching." | |
"?" | |
"400" |
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
1 + 1 | |
10 * 2 | |
1 + (10 / 2) ^ 2 |
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
"Good" .. "morning!" | |
"kltpzyxM" .. "eybdooG" | |
("U" .. "U") .. "D" .. "D" .. ("L" .. "R" .. "L" .. "R") .. "A" .. "B" |
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
x := 4 | |
y := 2 | |
x + y | |
name := "Kurtis" | |
"Hello, " .. name | |
age := 2017 - 1987 | |
age + 10 | |
"I'm younger than " .. age |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment