Skip to content

Instantly share code, notes, and snippets.

@adriculous
Created July 28, 2016 08:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adriculous/80108c657163123f39963bdc9294df35 to your computer and use it in GitHub Desktop.
Save adriculous/80108c657163123f39963bdc9294df35 to your computer and use it in GitHub Desktop.
symbols and hashes
# Symbols and Hashes
manga_01 = { title: "Cardcaptor Sakura",mangaka: "CLAMP" }
manga_02 = { title: "Zodiac P.I.",mangaka: "Natsumi Ando" }
manga_03 = { title: "The Kindaichi Case Files",mangaka: "Yozaburo Kanari (writer) & Fumiya Sato (illustrator)" }
manga_04 = { title: "Mermaid Melody Pichi Pichi Pitch",mangaka: "Michiko Yokote (writer) & Pink Hanamori (illustrator)"}
puts "My favorite manga series is " + manga_01[:title] + " by " + manga_01[:mangaka] + "."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment