Since there's like a thousand different console functions, would it be worthwhile to consider renaming print to log' and following this scheme for all the other functions?
error :: forall eff. String -> Eff (console :: CONSOLE | eff) Unit
error' :: forall a eff. (Show a) => a -> Eff (console :: CONSOLE | eff) Unit
log :: forall eff. String -> Eff (console :: CONSOLE | eff) Unit
log' :: forall a eff. (Show a) => a -> Eff (console :: CONSOLE | eff) Unit
warn :: forall eff. String -> Eff (console :: CONSOLE | eff) Unit
warn' :: forall a eff. (Show a) => a -> Eff (console :: CONSOLE | eff) Unit
etc.
Since there's like a thousand different
consolefunctions, would it be worthwhile to consider renamingprinttolog'and following this scheme for all the other functions?etc.