mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
minor fix
This commit is contained in:
parent
dce5898d06
commit
7c450ebc0c
@ -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!")
|
||||
|
Loading…
Reference in New Issue
Block a user