Über Präprozessoren

Link to über-präprozessoren

Was sind Präprozessoren?

Link to was-sind-präprozessoren

As the name suggests, preprocessors are executed before the script is executed.
They can perform various actions like enabling Debug Mode or Supress Bracket Errors.

Einen Präprozessor einbinden

Link to einen-präprozessor-einbinden

A preprocessor can be called using the #comment function.
Be careful with the comments though as you might start one with a preprocessor keyword.

ZenScript
Copy
#debug ist mein Lieblingswort und ich würde es am allerliebsten überall als Kommentar einfügen

↑ Würde den Debug-Modus aktivieren, da das #debug-Schlüsselwort gefunden wurde. Wenn du dies möglichst verhindern möchtest, empfehlen wir dir, deine Kommentare mit // zu starten.