Created
August 18, 2010 12:28
-
-
Save wandernauta/534537 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
Animal: | |
- name: String | |
- age: Int | |
- isPet: Bool | |
- owner: Ref(Human) | |
Human: | |
- name: String | |
- age: Int | |
- parent: Ref(Human) |
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
import models | |
fred := Animal new() | |
fred name = "Freddy" | |
fred isPet = true | |
fred owner = Human new("Rabbitmeister", 32) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment