Standard output¶
println¶
Prints a variable number of values into the standard output, separated by whitespace. Each collection type follows its own printing rule.
1 2 3 4 5 6 7 8 9 10 11 |
|
hello world
[1 2 3 4]
[1 2 3 4]
(1 2 3 4)
{"key" value}
{"key" value}
{:key1 [1 2 3]} {:key2 (1 2 3 4)}
prn¶
Prints a variable number of values into the standard output, separated by whitespace. Each collection type follows its own printing rule. In addition, strings are escaped.
1 2 3 4 5 6 7 8 9 10 11 |
|
"hello" "world"
[1 2 3 4]
[1 2 3 4]
(1 2 3 4)
{"key" "value"}
{"key" "value"}
{:key1 [1 2 3]} {:key2 (1 2 3 4)}