blob: b4574a1c1f32d908a7ba7da8abaec7540609899d [file] [log] [blame]
// This file should contain the basics of flatbuffers that all languages should
// support.
namespace flatbuffers.goldens;
table Galaxy {
num_stars:long;
}
table Universe {
age:double;
galaxies:[Galaxy];
}
root_type Universe;