`println()` prints nothing. Demo sketch: ``` print("1") println("2") print("3") ``` Expected: `println()` should print to the console, followed by a linebreak (`\n`). `print()` should print to the console. > 12 > 3 Instead, println prints nothing: > 13
println()prints nothing.Demo sketch:
Expected:
println()should print to the console, followed by a linebreak (\n).print()should print to the console.Instead, println prints nothing: