1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 14:56:54 +02:00

minor fix

This commit is contained in:
Jason J Ayala P
2014-09-19 20:30:11 -05:00
parent dce5898d06
commit 7c450ebc0c

View File

@@ -174,7 +174,7 @@ var
guess: int guess: int
while guess != number: while guess != number:
raw_guess = readLine(stdin) raw_guess = readLine(stdin)
if raw_guess = "": continue # Skip this iteration if raw_guess == "": continue # Skip this iteration
guess = str.parseInt(raw_guess) guess = str.parseInt(raw_guess)
if guess == 1001: if guess == 1001:
echo("AAAAAAGGG!") echo("AAAAAAGGG!")