<div dir="ltr">Does anybody know why `Format' param of `io:format' and friends disallows `iodata'?<br>I test it and it kinda works (when you do not pass control sequences):<br><br><br>1> io:format("The quick brown fox jumps over the lazy dog~n").<br>The quick brown fox jumps over the lazy dog<br>ok<br><br>2> io:format(["The quick brown fox jumps over the lazy dog~n"]).<br>The quick brown fox jumps over the lazy dog~nok<br><br>3> io:format(["The quick brown fox jumps over the lazy dog\n"]).<br>The quick brown fox jumps over the lazy dog<br>ok<br><br>4> io:format(["The quick brown fox jumps over the lazy dog: ~p ~p ~n"], [foo, bar]).<br>** exception error: bad argument<br>     in function  io:format/3<br>        called as io:format(<0.25.0>,<br>                            ["The quick brown fox jumps over the lazy dog: ~p ~p ~n"],<br>                            [foo,bar])<br><br></div>