minor tweaks

This commit is contained in:
Jason J Ayala P 2014-09-20 07:07:06 -05:00
parent 86022f3f3f
commit d7e939ffd7

View File

@ -14,7 +14,7 @@ Nim is efficient, expressive, and elegant.
var # Declare (and assign) variables, var # Declare (and assign) variables,
letter: char = 'n' # with or without type annotations letter: char = 'n' # with or without type annotations
lang = "N" & "im" lang = "N" & "im"
n_length : int = len(lang) nLength : int = len(lang)
boat: float boat: float
truth: bool = false truth: bool = false
@ -247,7 +247,7 @@ of aNo:
proc strcmp(a, b: cstring): cint {.importc: "strcmp", nodecl.} 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, Additionally, Nim separates itself from its peers with metaprogramming,