summaryrefslogtreecommitdiffhomepage
path: root/nim.html.markdown
diff options
context:
space:
mode:
authorKeith Miyake <keith.miyake@gmail.com>2017-10-19 23:07:29 -0700
committerKeith Miyake <keith.miyake@gmail.com>2017-10-19 23:07:29 -0700
commit5bbb8ef6cd315e0a1d6373f878f66146ba4ef938 (patch)
tree218cc6ffdfceb6204af6366fb0a94d0ec1c87f8d /nim.html.markdown
parent4d3637bfc4b23dabcb393547fcce0890cdd4e308 (diff)
[nim/en] Add multi-line comments
Diffstat (limited to 'nim.html.markdown')
-rw-r--r--nim.html.markdown23
1 files changed, 19 insertions, 4 deletions
diff --git a/nim.html.markdown b/nim.html.markdown
index 07674532..30dfa94f 100644
--- a/nim.html.markdown
+++ b/nim.html.markdown
@@ -12,6 +12,25 @@ that gives the programmer power without compromises on runtime efficiency.
Nim is efficient, expressive, and elegant.
```nim
+# Single-line comments start with a #
+
+#[
+ Multi-line comments begin with a #[
+ ... and end with ]#
+
+They don't care about indentation
+
+ #[
+ and they can be nested
+ ]#
+
+]#
+
+discard """
+This can also work as a multiline comment.
+Or for unparsable, broken code
+"""
+
var # Declare (and assign) variables,
letter: char = 'n' # with or without type annotations
lang = "N" & "im"
@@ -35,10 +54,6 @@ when compileBadCode: # `when` is a compile time `if`
discard 1 > 2 # Note: The compiler will complain if the result of an expression
# is unused. `discard` bypasses this.
-discard """
-This can work as a multiline comment.
-Or for unparsable, broken code
-"""
#
# Data Structures