holey-bytes/hblang/examples/directives.hb
2024-05-14 23:07:32 +02:00

10 lines
141 B
Plaintext

Type := struct {
brah: int,
blah: int,
}
main := fn(): int {
return @eca(int, 1, Type.(10, 20), @sizeof(Type), @alignof(Type), 5, 6);
}