Jump to content

Julia: Difference between revisions

99 bytes added ,  26 September 2019
Line 115: Line 115:


====String Concatenation====
====String Concatenation====
Julia uses <code>*</code> to concatenate strings.
You will get an error if you use <code>+</code>.
<syntaxhighlight lang="julia">
<syntaxhighlight lang="julia">
"a"*"b"
"a"*"b"