2021-02-12 14:41:10 +00:00
|
|
|
|
2021-04-06 11:23:45 +00:00
|
|
|
enum ABC: int { A, B, C }
|
|
|
|
|
|
|
|
|
2021-02-12 14:41:10 +00:00
|
|
|
table MoreDefaults {
|
|
|
|
ints: [int] = [];
|
|
|
|
floats: [float] = [ ];
|
|
|
|
empty_string: string = "";
|
|
|
|
some_string: string = "some";
|
2021-04-06 11:23:45 +00:00
|
|
|
abcs: [ABC] = [];
|
|
|
|
bools: [bool] = [];
|
2021-02-12 14:41:10 +00:00
|
|
|
}
|