Skip to content

Instantly share code, notes, and snippets.

@jhchabran
Created July 25, 2010 15:17
Show Gist options
  • Save jhchabran/489623 to your computer and use it in GitHub Desktop.
Save jhchabran/489623 to your computer and use it in GitHub Desktop.
u := Usine clone
u declare("user", user,
user firstname := "John"
user lastname := "Connor"
user age := suite(a, a+2)
)
a := u create("user")
b := u create("user")
a firstname print
a age print
b firstname print
b age print
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment