mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 12:05:50 +00:00
13 lines
203 B
Plaintext
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; |