• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// This file should contain the basics of flatbuffers that all languages should
2// support.
3
4namespace flatbuffers.goldens;
5
6table Galaxy {
7  num_stars:long;
8}
9
10table Universe {
11  age:double;
12  galaxies:[Galaxy];
13}
14
15root_type Universe;