holey-bytes/hblang/examples/directives.hb

10 lines
141 B
Plaintext
Raw Normal View History

2024-05-14 21:07:32 +00:00
Type := struct {
brah: int,
blah: int,
}
main := fn(): int {
return @eca(int, 1, Type.(10, 20), @sizeof(Type), @alignof(Type), 5, 6);
}