Skip to content

Instantly share code, notes, and snippets.

@changemewtf
Created November 10, 2015 20:39
Show Gist options
  • Save changemewtf/8adcd6c611c2a7c8846b to your computer and use it in GitHub Desktop.
Save changemewtf/8adcd6c611c2a7c8846b to your computer and use it in GitHub Desktop.
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