RosettaCodeData/Task/String-prepend/Seed7/string-prepend.seed7
2015-02-20 09:02:09 -05:00

9 lines
150 B
Text

$ include "seed7_05.s7i";
const proc: main is func
local
var string: s is "world!";
begin
s := "Hello " & s;
writeln(s);
end func;