Last active
May 26, 2016 09:58
-
-
Save mzaks/2fc4c85f4e74085ff4ed20195f6a85d4 to your computer and use it in GitHub Desktop.
Simple recursive FBS
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
| table Person { | |
| name : string; | |
| friends : [Person]; | |
| } | |
| root_type Person; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment