diff options
author | Camil Staps | 2016-04-29 12:18:13 +0200 |
---|---|---|
committer | Camil Staps | 2016-04-29 12:18:13 +0200 |
commit | 1b8f864f8d0482707eab6115458d6432f3d4731b (patch) | |
tree | b0173401f729f6e80cc1aa11df6ba01e9c437978 /Smurf.icl | |
parent | Nicer cli (diff) |
fix toString for Push
Diffstat (limited to 'Smurf.icl')
-rw-r--r-- | Smurf.icl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ instance zero [a] where zero = [] instance toString Stm where - toString (Push s) = "\"" +++ s +++ "\"" + toString (Push s) = quotify s toString Input = "i" toString Output = "o" toString Cat = "+" |