We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Write and WriteLn are both Magic methods.
For each parameter you pass them they call _write(ToString(param));.
_write(ToString(param));
Then WriteLn will call _writeln();
_writeln();
Both _write and _writeln are overridable.
_write
_writeln
Simba overrides _write and _writeln to handle adding the text to the debug memo. You can see the code here.