• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2enum ABC: int { A, B, C }
3
4
5table MoreDefaults {
6  ints: [int] = [];
7  floats: [float] = [     ];
8  empty_string: string = "";
9  some_string: string = "some";
10  abcs: [ABC] = [];
11  bools: [bool] = [];
12}
13