Add goldens directory

This commit is contained in:
Derek Bailey
2023-05-05 13:43:07 -07:00
parent ef5ae488dd
commit 3308444147
9 changed files with 360 additions and 0 deletions

13
goldens/schema/basic.fbs Normal file
View File

@@ -0,0 +1,13 @@
// 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;