Files
BrainAssembly/tests/create.basm
2025-10-10 14:19:07 +11:00

14 lines
236 B
Plaintext

create bool *1 = true
create hello *5 = "Hello"
create bool2 *1 = true
while bool2 {
set bool2 = false
if bool {
set bool2 = true
}
if bool2 {
set bool = false
print hello
}
}
set bool2 = true