holey-bytes/hblang/text-prj/pkg.hb
2024-07-20 18:52:24 +02:00

20 lines
226 B
Plaintext

global := 10
Structa := struct {
foo: int,
goo: int,
}
create_window := fn(): WindowID {
return WindowID.(1, 2)
}
WindowID := struct {
host_id: int,
window_id: int,
}
fib := fn(n: int): int {
return n + 1
}