Skip to content

Instantly share code, notes, and snippets.

@anchietajunior
Last active July 25, 2018 02:08
Show Gist options
  • Save anchietajunior/f2cc3ffd13691d189fe1c205c2e8491a to your computer and use it in GitHub Desktop.
Save anchietajunior/f2cc3ffd13691d189fe1c205c2e8491a to your computer and use it in GitHub Desktop.
Structs Examples
Notebook = Struct.new(:cpu, :ram, :ssd) do
def all_configs
"PC configs: #{cpu} - #{ram} - #{ssd}"
end
end
notebook = Notebook.new("i7", "16GB", "256")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment