LightAndLight / ipso

A functional scripting language.
https://ipso.dev
16 stars 1 forks source link

`eprint[ln] : String -> IO ()` and `dprint[ln] : Debug a => a -> IO ()` #409

Closed LightAndLight closed 1 year ago

LightAndLight commented 1 year ago

eprint and eprintln print to stderr.

dprint x = print <| debug x and dprintln x = println <| debug x, which I often use for debugging.