Skip to content

Instantly share code, notes, and snippets.

@verner-dz
Created October 1, 2015 05:14
Show Gist options
  • Save verner-dz/7e4dcf6aa54532c31551 to your computer and use it in GitHub Desktop.
Save verner-dz/7e4dcf6aa54532c31551 to your computer and use it in GitHub Desktop.
users = [
{:user => "Robert Ross", :role => "Instructor"},
{:user => "Patrick Everman", :role => "Student"},
{:user => "Quincy Iheme", :role => "TA"},
{:user => "Roxanne", :role => "Student"}
]
#Alternate syntax
users = [
{user: "Robert Ross", role: "Instructor"},
{user: "Patrick Everman", role: "Student"},
{user: "Quincy Iheme", role: "TA"},
{user: "Roxanne", role: "Student"}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment