Added more examples

This commit is contained in:
Eduard Urbach 2024-07-31 00:03:16 +02:00
parent 2a0137c2c2
commit 9ea99c97c4
Signed by: eduard
GPG key ID: 49226B848C78F6C8
3 changed files with 29 additions and 4 deletions

View file

@ -0,0 +1,22 @@
import log
import sys
main() {
x := 12
loop {
if x & 1 == 0 {
x /= 2
} else {
x = 3 * x + 1
}
log.number(x)
if x == 1 {
return
}
sys.write(1, " ", 1)
}
}