stdlib: Disable echo on split command.
[goals.git] / stdlib / prelude.gl
index 04dde93..836b5c4 100644 (file)
@@ -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'
 }