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:
@@ -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!")
|
||||||
|
Reference in New Issue
Block a user