Please put debug output functionality in the language. Thank you.
There are a variety of examples to choose from multiple languages, and ghaberek has also written a debug output library.
My attempt works something like this:
include debug_printing.e
SetDebug(1)
SetDebugToConsole(1)
-- ...
dp("Debug output...")
Etc.
There would be no need of an include with a built-in, of course... I guess it could go into the standard library as well. Not sure about implementation details. That's for the devs.