Created
November 10, 2015 20:39
-
-
Save changemewtf/8adcd6c611c2a7c8846b to your computer and use it in GitHub Desktop.
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
def print_new_line | |
print "\n" | |
end | |
def print_a_number | |
value = 100 | |
print value | |
print_new_line() | |
end | |
def main | |
value = 10 | |
print_a_number() | |
print value | |
print_new_line() | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment