You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The interpreter for print is a bit complicated now, maybe the primitive function should be printchar instead? Then print can be implemented in sugar as just print xs = sequence_ (map printChar xs) (you may need to add sequence :: [IO a] -> IO ())
The interpreter for print is a bit complicated now, maybe the primitive function should be printchar instead? Then print can be implemented in sugar as just print
xs = sequence_ (map printChar xs)(you may need to addsequence :: [IO a] -> IO ())