14 lines
236 B
Plaintext
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 |