This repository has been archived on 2024-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
arf/tests/parser/enum/main.arf

37 lines
475 B
Plaintext
Raw Normal View History

2022-08-21 06:48:36 +00:00
:arf
---
enum ro Weekday:Int
2022-09-17 04:58:08 +00:00
- sunday
- monday
- tuesday
- wednesday
- thursday
- friday
- saturday
2022-08-21 06:48:36 +00:00
enum ro NamedColor:U32
2022-09-17 04:58:08 +00:00
- red: <0xFF0000>
- green: <0x00FF00>
- blue: <0x0000FF>
2022-08-21 06:48:36 +00:00
enum ro AffrontToGod:Int:4
2022-09-17 04:58:08 +00:00
- bird0:
<28394 9328
398 9>
- bird1:
<23 932832
2022-08-21 06:48:36 +00:00
398
2022-09-17 04:58:08 +00:00
2349>
- bird2:
<1
2022-08-21 06:48:36 +00:00
2
3
2022-09-17 04:58:08 +00:00
4>
enum ro ThisIsTerrible:Obj:(.rw x:Int .rw y:Int)
- up: (.x: 0 .y: -1)
- down: (.x: 0 .y: 1)
- left: (.x: -1 .y: 0)
- right: (.x: 1 .y: 0)