Guest User

Untitled

a guest
Jun 22nd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. edgarAllan = {
  2. "firstName" => "Edgar",
  3. "middleInitial" => "Allan",
  4. "lastName" => "Poe",
  5. "suffix" => "The Great."
  6. }
  7.  
  8.  
  9. #print "My first name is #{edgarAllan["firstName"]}"
  10. print "My full name is #{edgarAllan["firstName"]} #{edgarAllan["middleInitial"]} #{edgarAllan["lastName"]} #{edgarAllan["suffix"]}"
Add Comment
Please, Sign In to add comment