Skip to content
John Peel edited this page Oct 6, 2013 · 4 revisions

Write and WriteLn are both Magic methods.

For each parameter you pass them they call _write(ToString(param));.

Then WriteLn will call _writeln();

Both _write and _writeln are overridable.

Simba overrides _write and _writeln to handle adding the text to the debug memo. You can see the code here.

Clone this wiki locally