| 1 | const font = $embed_file('../assets/fonts/RobotoMono-Regular.ttf') |
| 2 | |
| 3 | const test_alignment = 123 |
| 4 | const foo = Foo{ |
| 5 | f: 'foo' |
| 6 | } |
| 7 | const spam = 456 |
| 8 | const egg = 'lorem ipsum' |
| 9 | const spameggs = true |
| 10 | |
| 11 | const bar = 'A string |
| 12 | spanning multiple |
| 13 | lines' |
| 14 | |
| 15 | const baz = 'short' |
| 16 | const some_long_name = MyStruct{ |
| 17 | x: 42 |
| 18 | } |
| 19 | |
| 20 | const a = 123 |
| 21 | const abc = 123 |
| 22 | const b = 123 |
| 23 |