Files
BrainAssembly/tests/test.basm
2025-11-03 13:50:32 +11:00

13 lines
200 B
Plaintext

int num1 796
string str1 -1 "Hello, world!"
int num2 795
string str2 -1 "World, hello?"
equal num1 num2 cond
if cond
print str1
end if
inc num2
equal num1 num2 cond2
if cond2
print str2
end if