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
while guess != number:
raw_guess = readLine(stdin)
if raw_guess = "": continue # Skip this iteration
if raw_guess == "": continue # Skip this iteration
guess = str.parseInt(raw_guess)
if guess == 1001:
echo("AAAAAAGGG!")