RosettaCodeData/Task/Copy-a-string/Metafont/copy-a-string.metafont
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07:00

7 lines
122 B
Text

string s, a;
s := "hello";
a := s;
s := s & " world";
message s; % writes "hello world"
message a; % writes "hello"
end