1// This file should contain the basics of flatbuffers that all languages should 2// support. 3 4table Galaxy { 5 num_stars:long; 6} 7 8table Universe { 9 age:double; 10 galaxies:[Galaxy]; 11} 12 13root_type Universe;
View as plain text