RosettaCodeData/Task/Strip-comments-from-a-string/PL-I/strip-comments-from-a-string.pli
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

3 lines
112 B
Text

k = search(text, '#;');
if k = 0 then put skip list (text);
else put skip list (substr(text, 1, k-1));