Fixed an incorrect register move
This commit is contained in:
parent
b1f0d20394
commit
df5813515d
2 changed files with 7 additions and 1 deletions
|
@ -2,8 +2,10 @@ import log
|
|||
import sys
|
||||
|
||||
main() {
|
||||
x := 12
|
||||
collatz(12)
|
||||
}
|
||||
|
||||
collatz(x) {
|
||||
loop {
|
||||
if x & 1 == 0 {
|
||||
x /= 2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue