Skip to content

Instantly share code, notes, and snippets.

@joneshf
Created December 9, 2013 04:15
Show Gist options
  • Save joneshf/7867312 to your computer and use it in GitHub Desktop.
Save joneshf/7867312 to your computer and use it in GitHub Desktop.
add3 = (x, y, z) -> x + y + z
add-three = (x, y, z) --> add3 x, y, z
"""
add3 1 2: #{add3 1 2}
add-three 1 2: #{add-three 1 2}
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment