From 7c450ebc0c10aa7a696045131e41db8c09974dc8 Mon Sep 17 00:00:00 2001 From: Jason J Ayala P Date: Fri, 19 Sep 2014 20:30:11 -0500 Subject: minor fix --- nim.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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!") -- cgit v1.2.3