Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save louisebolden/7cbacc48efef2e6975aebb28c3ffded7 to your computer and use it in GitHub Desktop.
Save louisebolden/7cbacc48efef2e6975aebb28c3ffded7 to your computer and use it in GitHub Desktop.
# instead of:
def square(x); x * x end
# we can now have:
def square(x) = x * x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment