summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--nim.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/nim.html.markdown b/nim.html.markdown
index c878b5b6..468e6442 100644
--- a/nim.html.markdown
+++ b/nim.html.markdown
@@ -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!")