...

Text file src/github.com/google/flatbuffers/goldens/schema/basic.fbs

Documentation: github.com/google/flatbuffers/goldens/schema

     1// This file should contain the basics of flatbuffers that all languages should
     2// support.
     3
     4table Galaxy {
     5  num_stars:long;
     6}
     7
     8table Universe {
     9  age:double;
    10  galaxies:[Galaxy];
    11}
    12
    13root_type Universe;

View as plain text