Created
July 18, 2016 18:08
-
-
Save Kingwindie/9234ff2ce7a832a5829218a8d878ef6e to your computer and use it in GitHub Desktop.
acltc exercise 6
This file contains 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
a=1 | |
b=2 | |
c=a+b | |
d=c+a+b | |
puts d | |
hello="goodnight" | |
world=" moon" | |
puts hello+world | |
hello="cat" | |
world="fish" | |
puts hello+world | |
x=1 | |
y=2 | |
puts x+y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment