9 lines
187 B
Plaintext
9 lines
187 B
Plaintext
## while EOL is ignored in explicitly parenthesized XLIST, a semicolon must not be.
|
|
(printf
|
|
"hello, world\n"
|
|
)
|
|
|
|
(printf; ##ERROR: syntax error - unexpected semicolon
|
|
"hello, world\n"
|
|
)
|