Skip to content

Instantly share code, notes, and snippets.

View juanmaree's full-sized avatar

Juan Maree juanmaree

View GitHub Profile
@juanmaree
juanmaree / cheat_sheet.rb
Created September 17, 2018 15:27
[Ruby Cheat] Cheatsheet #ruby
# This is a comment
# In Ruby, (almost) everything is an object.
# This includes numbers...
3.class #=> Integer
# ...and strings...
"Hello".class #=> String
# ...and even methods!