RosettaCodeData/Task/Strip-comments-from-a-string/PicoLisp/strip-comments-from-a-string.l

3 lines
118 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(for Str '("apples, pears # and bananas" "apples, pears ; and bananas")
(prinl (car (split (chop Str) "#" ";"))) )