This commit is contained in:
nub31
2026-03-05 22:02:35 +01:00
parent 0be4e35628
commit 0e099d0baf

View File

@@ -17,14 +17,12 @@ func main(): i32 {
let message = getMessage()
match message {
Quit
{
Quit {
core::println("quit")
}
Say msg
{
Say msg {
core::println(msg)
}
}
}
return 0