This commit is contained in:
nub31
2026-02-23 18:07:23 +01:00
parent 1511d5d2b8
commit 583c01201f
5 changed files with 252 additions and 16 deletions

View File

@@ -15,6 +15,16 @@ export enum message {
export func add(a: i32 b: i32): i32
{
let message: math::message = enum math::message.move { x = 1 y = 1 }
match message {
quit q {}
move m {
m.x = 23
m.y = 23
}
}
return math::add_internal(a b)
}