RosettaCodeData/Task/Here-document/Erlang/here-document.erl
2023-07-01 13:44:08 -04:00

7 lines
67 B
Erlang

2> S = " ad
2> 123
2> the end".
3> io:fwrite( S ).
ad
123
the end