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
121 B

LET sum = 0
FOR i = 2 TO 5
sum = sum + i
NEXT i
IF sum == 14 THEN
PRINT "success"
ELSE
PRINT "fail"
END IF