diff options
| -rw-r--r-- | nim.html.markdown | 4 | 
1 files 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, | 
