5 lines
84 B
Text
5 lines
84 B
Text
string a, b;
|
|
a := "String";
|
|
message a & " literal";
|
|
b := a & " literal";
|
|
message b;
|