Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 23rd, 2012  |  syntax: None  |  size: 0.17 KB  |  hits: 6  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. # Pre 1.9.x syntax
  2.  
  3. {
  4.   :first_key => "first value"
  5. }
  6.  
  7. {
  8.   "first_key" => "first_value"
  9. }
  10.  
  11. # 1.9.x syntax
  12.  
  13. {
  14.   first_key: "first_value"
  15. }
  16.  
  17. {
  18.   "first_key": "first_value"
  19. }