This commit is contained in:
agra
2026-03-03 16:18:58 +02:00
parent 23f444033a
commit 0336f361c7
7 changed files with 181 additions and 33 deletions

5
examples/modules/test.sx Normal file
View File

@@ -0,0 +1,5 @@
assert :: (condition: bool) {
if !condition {
out("assertion failed\n");
}
}