You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
113 B

LET x = 32
WHILE x > 1
x = x / 2
END WHILE
IF x == 1 THEN
PRINT "success"
ELSE
PRINT "fail"
END IF