Files
flatbuffers/goldens/schema/basic.fbs
2023-05-05 13:43:07 -07:00

13 lines
203 B
Plaintext

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