Files
flatbuffers-bigfoot/goldens/schema/basic.fbs
2023-11-19 07:51:36 +00:00

15 lines
235 B
Plaintext

// 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;