-
Notifications
You must be signed in to change notification settings - Fork 0
Core Syntax and Console
egyptron edited this page Sep 24, 2026
·
1 revision
Awake Simple S1 includes four distinct color-coded console printing modes, timing controls, and execution termination.
Line comments begin with note:. Anything after note: on that line is ignored.
note: This is a developer comment
The engine includes built-in ANSI-colored stream printers:
display("<message>")
display_error("<message>")
display_warn("<message>")
display_success("<message>")
| Command | Output Color | Standard Purpose |
|---|---|---|
display(...) |
Standard White | General logging, outputs, scores. |
display_error(...) |
Bold Red | Critical errors, failures, boss warnings. |
display_warn(...) |
Bold Yellow | Warnings, caution notes, environmental alerts. |
display_success(...) |
Bold Green | Successful actions, victories, save confirmation. |
display("Initializing system...")
display_warn("Low disk space detected.")
display_error("Failed to load map data!")
display_success("Recovered from backup successfully.")
Pause thread execution without freezing host system processes:
wait <count> seconds
wait <count> milliseconds
display("Charging laser...")
wait 1 seconds
display("Target acquired.")
wait 500 milliseconds
display("FIRE!")
TerminateProcess()
nothing_pp()
-
TerminateProcess(): Immediately halts and exits the script with return code0. -
nothing_pp(): A formal no-op placeholder statement (does nothing).