Files
BrainAssembly/tests/create.basm

14 lines
236 B
Plaintext
Raw Normal View History

2025-10-10 14:19:07 +11:00
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