holey-bytes/hblang/examples/directives.hb
2024-05-15 10:37:39 +02:00

9 lines
140 B
Plaintext

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