From 6a5b626f788d4aaaa2f3c6e7e749bf3b77410245 Mon Sep 17 00:00:00 2001 From: Josias Date: Thu, 16 Jul 2020 18:48:59 +0200 Subject: Nim: Fix syntax error Semicolons for types are supposed to be directly after the variable name. --- nim.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nim.html.markdown') diff --git a/nim.html.markdown b/nim.html.markdown index 1e17d8f0..9730e579 100644 --- a/nim.html.markdown +++ b/nim.html.markdown @@ -28,7 +28,7 @@ Or for unparsable, broken code var # Declare (and assign) variables, letter: char = 'n' # with or without type annotations lang = "N" & "im" - nLength : int = len(lang) + nLength: int = len(lang) boat: float truth: bool = false -- cgit v1.2.3