diff options
author | Jason J Ayala P <github@JasonAyala.com> | 2014-09-19 20:30:11 -0500 |
---|---|---|
committer | Jason J Ayala P <github@JasonAyala.com> | 2014-09-19 20:30:11 -0500 |
commit | 7c450ebc0c10aa7a696045131e41db8c09974dc8 (patch) | |
tree | 54be6d2dfeef44607d5b7dade04aa148f0304203 /nim.html.markdown | |
parent | dce5898d0696fe76940723b85a52c6fe191196fd (diff) |
minor fix
Diffstat (limited to 'nim.html.markdown')
-rw-r--r-- | nim.html.markdown | 2 |
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!") |