• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1table MuLan {
2  sword_attack_damage: int;
3}
4
5table Rapunzel {
6  hair_length: int;
7}
8
9table Belle {
10  books_read: int;
11}
12
13union Character {
14  MuLan,
15  Rapunzel,
16  Belle,
17}
18
19table Movie {
20  characters: [Character];
21}
22
23root_type Movie;
24file_identifier "MOVI";
25