The OpenD Programming Language

ConsoleOutputType

Defines how terminal output should be handled.

Values

ValueMeaning
linear0

do you want output to work one line at a time?

cellular1

or do you want access to the terminal screen as a grid of characters?

minimalProcessing255

do the least possible work, skips most construction and destruction tasks, does not query terminal in any way in favor of making assumptions about it. Only use if you know what you're doing here

Meta