X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=stdlib%2Fprelude.gl;fp=stdlib%2Fprelude.gl;h=836b5c419b059a96949ab01102ab55755d5baf50;hb=740baf408886c3acd525fd057802e973aa3c3a8c;hp=04dde9323231c4d5ca4f1782ce881e3ff0fe4192;hpb=3258e6938ac266998ced1394792e1a3a44779526;p=goals.git diff --git a/stdlib/prelude.gl b/stdlib/prelude.gl index 04dde93..836b5c4 100644 --- a/stdlib/prelude.gl +++ b/stdlib/prelude.gl @@ -108,7 +108,7 @@ pure function sort (xs) returning strings = @{ # Split a string into a list. # https://superuser.com/a/1066541 -pure function split (s) returning strings = { +pure function split (s) returning strings = @{ s=%s eval 'for f in '$s'; do echo "$f"; done' }