diff options
author | Camil Staps | 2016-11-08 21:18:20 +0000 |
---|---|---|
committer | Camil Staps | 2016-11-08 21:18:20 +0000 |
commit | 00310d600194867ed3a5bef922a87069ec8bffc0 (patch) | |
tree | 9ea7dc8b00bcd05fe0f958048c278d8a3eaf0a57 | |
parent | Adapted more examples to be standalone (diff) |
Fix pascal.icl
-rw-r--r-- | pascal.icl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ repeatn n x = take n (repeat x) spaces :: !.Int -> [Char] spaces n = repeatn n ' ' -class toString a :: a -> String +class toString a :: !a -> String instance toString [Char] where toString a = {c \\ c <- a} instance toString Int where toString a = code inline { |