Halcyon/demo.hal
2024-11-05 17:14:13 -06:00

19 lines
176 B
Plaintext

/*
S :: struct {
a: integer,
b: glyph,
c: real,
}
s := foo(S{a: 1, b: 'a', c: 1.0}, 2);
foo :: (s: S, a: integer) -> S {
return s;
}
*/
S :: struct { a, b, c: real }