summaryrefslogtreecommitdiffhomepage
path: root/nim.html.markdown
diff options
context:
space:
mode:
authorJasonJAyalaP <jason@jasonayala.com>2014-09-19 20:17:59 -0500
committerJasonJAyalaP <jason@jasonayala.com>2014-09-19 20:17:59 -0500
commit64cd3c4e2245b66546dbc091c1737d9660f7ef94 (patch)
treeb21dd8bc1eff1e15cd9d6c1b2a391014b331e984 /nim.html.markdown
parentb87f1acc216ae59ec29c7481008d86de081ffedc (diff)
cleanup
Diffstat (limited to 'nim.html.markdown')
-rw-r--r--nim.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/nim.html.markdown b/nim.html.markdown
index eca3aa2d..3b826cf4 100644
--- a/nim.html.markdown
+++ b/nim.html.markdown
@@ -12,14 +12,14 @@ efficiency.
Nim is efficient, expressive, and elegant.
```nimrod
-var # Declare and assign several variables,
+var # Declare (and assign) variables,
letter: char = 'n' # with or without type annotations
lang = "N" & "im"
n_let : int = len(lang)
boat: float
truth: bool = false
-let # Use let to declare and bind an variable *once*.
+let # Use let to declare and bind variables *once*.
legs = 400 # legs is immutable.
arms = 2_000 # _ are ignored and are useful for long numbers.
aboutPi = 3.15