Created
July 25, 2010 15:17
-
-
Save jhchabran/489623 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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