4 lines
91 B
Erlang
4 lines
91 B
Erlang
S = "hello",
|
|
S1 = S ++ " literal",
|
|
io:format ("~s literal~n",[S]),
|
|
io:format ("~s~n",[S1])
|