Sign in
pigweed
/
third_party
/
github
/
google
/
flatbuffers
/
89430a14d689830218559478f6efb4352b49067c
/
.
/
goldens
/
schema
/
basic.fbs
blob: b4574a1c1f32d908a7ba7da8abaec7540609899d [
file
]
// 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
;