flatc-fork 0.6.0+25.12.19-2026-02-06-03fffb2

Vendored executable of flatbuffer's `flatc` (maintained fork).
Documentation
namespace Example;

enum Status:byte { Active, Inactive, Pending }

struct Point {
  x:int;
  y:int;
}

table User {
  id:uint;
  name:string;
  points:[Point];
  status:Status = Active;
  metadata:[string];
}

table Group {
  name:string;
  users:[User];
  leader:User;
}

root_type Group;