aboutsummaryrefslogtreecommitdiff
path: root/doc/eclectic.fbs
diff options
context:
space:
mode:
Diffstat (limited to 'doc/eclectic.fbs')
-rw-r--r--doc/eclectic.fbs12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/eclectic.fbs b/doc/eclectic.fbs
new file mode 100644
index 0000000..26ecd85
--- /dev/null
+++ b/doc/eclectic.fbs
@@ -0,0 +1,12 @@
+ namespace Eclectic;
+
+ enum Fruit : byte { Banana = -1, Orange = 42 }
+ table FooBar {
+ meal : Fruit = Banana;
+ density : long (deprecated);
+ say : string;
+ height : short;
+ }
+ file_identifier "NOOB";
+ root_type FooBar;
+