Skip to content

Instantly share code, notes, and snippets.

@sdogruyol
Created December 14, 2015 07:56
Show Gist options
  • Save sdogruyol/d39ad4d1bcea21306a29 to your computer and use it in GitHub Desktop.
Save sdogruyol/d39ad4d1bcea21306a29 to your computer and use it in GitHub Desktop.
# Type inferred
def say(something)
p something
end
# Explicit Type
def say(something : String)
p something
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment