Last active
July 25, 2018 02:08
-
-
Save anchietajunior/f2cc3ffd13691d189fe1c205c2e8491a to your computer and use it in GitHub Desktop.
Structs Examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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