RosettaCodeData/Task/Substring-Top-and-tail/Phix/substring-top-and-tail.phix
2016-12-05 23:44:36 +01:00

4 lines
52 B
Text

constant s = "(test)"
?s[2..-1]
?s[1..-2]
?s[2..-2]