Fixed an incorrect register move

This commit is contained in:
2024-08-02 15:06:32 +02:00
parent b1f0d20394
commit df5813515d
2 changed files with 7 additions and 1 deletions

View File

@ -2,8 +2,10 @@ import log
import sys
main() {
x := 12
collatz(12)
}
collatz(x) {
loop {
if x & 1 == 0 {
x /= 2