2024-01-20 10:12:37 +09:00
|
|
|
## while EOL is ignored in explicitly parenthesized XLIST, a semicolon must not be.
|
|
|
|
(printf
|
|
|
|
"hello, world\n"
|
|
|
|
)
|
|
|
|
|
2024-01-21 02:23:19 +09:00
|
|
|
(printf; ##ERROR: syntax error - unexpected semicolon
|
2024-01-20 10:12:37 +09:00
|
|
|
"hello, world\n"
|
|
|
|
)
|