Skip to content

Instantly share code, notes, and snippets.

@wycats
Created July 31, 2008 01:15
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 wycats/a6b25d742983e6370d83 to your computer and use it in GitHub Desktop.
Save wycats/a6b25d742983e6370d83 to your computer and use it in GitHub Desktop.
{:people => [
{:name => "Yehuda", :age => 26, :siblings => ["Avrohom", "Yaakov", "Nechama"]}
])
JSON:
{people: [
{name: "Yehuda", age: 26, siblings: ["Avrohom", "Yaakov", "Nechama"]
]}
XML:
<struct>
<list name="people">
<struct>
<string name="name">Yehuda</string>
<i4 name="age">26</i4>
<list name="siblings">
<string>Avrohom</string>
<string>Yaakov</string>
<string>Nechama</string>
</list>
</struct>
</list>
</struct>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment