Skip to content

Instantly share code, notes, and snippets.

@gbpereira
Created October 20, 2015 02:42
Show Gist options
  • Save gbpereira/f4f63c91c7822ffed49c to your computer and use it in GitHub Desktop.
Save gbpereira/f4f63c91c7822ffed49c to your computer and use it in GitHub Desktop.
# tipagem forte
a = 2
b = '4'
a * b
#=> TypeError: String can't be coerced into Fixnum
# tipagem dinamica
idade = 25
idade = '25'
puts idade.class
#=> String
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment