Quoting constructs: Difference between revisions

Content added Content deleted
(add BQN)
(add to bQN)
Line 25: Line 25:
'b'
'b'
@</lang>
@</lang>
<code>@</code> is a symbol that represents the null character.
<code>@</code> is a symbol that represents the null character. Characters can contain a newline(<code>@+10</code> is recommended, however).


* Number
* Number
Line 47: Line 47:
** Regular array notation <lang bqn>⟨1, 2, 3⟩</lang> You can nest arrays in arrays. Separators can be <code>,</code>, <code>⋄</code> and newline.
** Regular array notation <lang bqn>⟨1, 2, 3⟩</lang> You can nest arrays in arrays. Separators can be <code>,</code>, <code>⋄</code> and newline.
** Stranding <lang bqn>1‿2‿3</lang> any expression which doesn't fit in a single atom must be put in parentheses.
** Stranding <lang bqn>1‿2‿3</lang> any expression which doesn't fit in a single atom must be put in parentheses.
** Strings <lang bqn>"Hello World"
"Quoted "" String"</lang> any sequence of characters including newlines can be put inside a string. Quotes are escaped by typing two quotes.


=={{header|Go}}==
=={{header|Go}}==