1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 23:06:49 +02:00
This commit is contained in:
JasonJAyalaP
2014-09-19 20:19:16 -05:00
parent 64cd3c4e22
commit 2caa82052d

View File

@@ -15,7 +15,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_let : int = len(lang) n_length : int = len(lang)
boat: float boat: float
truth: bool = false truth: bool = false