Substring/Top and tail: Difference between revisions

Content added Content deleted
m (→‎{{header|J}}: fixed external link: unnecessarry http:// removed)
m (→‎{{header|Euphoria}}: blank line removed)
Line 57: Line 57:


=={{header|Euphoria}}==
=={{header|Euphoria}}==
<lang euphoria>
<lang euphoria>function strip_first(sequence s)
function strip_first(sequence s)
return s[2..$]
return s[2..$]
end function
end function