summaryrefslogtreecommitdiff
path: root/doc/colm/0_04_hello_world.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/colm/0_04_hello_world.adoc')
-rw-r--r--doc/colm/0_04_hello_world.adoc3
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/colm/0_04_hello_world.adoc b/doc/colm/0_04_hello_world.adoc
index 0406a159..8cbfab53 100644
--- a/doc/colm/0_04_hello_world.adoc
+++ b/doc/colm/0_04_hello_world.adoc
@@ -57,11 +57,10 @@ TIP: It turns out that print is also a function that can have multiple arguments
[source,chapel]
.hello_world_ext.lm
----
-print( 'hello ', "world" "\r\n" )
+print( 'hello ', "world\r\n" )
----
We also notice that:
* the quotes can be single and double
-* there is no need for a concat operator
* the whitespace is not significant
* the newlines '\n' appear to be '\r\n'