Created
March 2, 2012 22:04
-
-
Save mkoby/1961710 to your computer and use it in GitHub Desktop.
Test Gist
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
2 + 2 # => 4 | |
puts "Hello, World!" # => "Hello, World" | |
my_array = [1, 2, 3, 4, 5] # => [1,2,3,4,5] |
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
def add(x, y) | |
x + y | |
end | |
def length(my_string) | |
my_string.length | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment