From d7e939ffd712e3b6ae1f45b81b1cc0248a28d00a Mon Sep 17 00:00:00 2001 From: Jason J Ayala P Date: Sat, 20 Sep 2014 07:07:06 -0500 Subject: [PATCH] minor tweaks --- nim.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nim.html.markdown b/nim.html.markdown index 06adba81..4619975d 100644 --- a/nim.html.markdown +++ b/nim.html.markdown @@ -14,7 +14,7 @@ Nim is efficient, expressive, and elegant. var # Declare (and assign) variables, letter: char = 'n' # with or without type annotations lang = "N" & "im" - n_length : int = len(lang) + nLength : int = len(lang) boat: float truth: bool = false @@ -247,7 +247,7 @@ of aNo: proc strcmp(a, b: cstring): cint {.importc: "strcmp", nodecl.} -var cmp = strcmp("C?", "Easy!") +let cmp = strcmp("C?", "Easy!") ``` Additionally, Nim separates itself from its peers with metaprogramming,