add help command

This commit is contained in:
Tuomas Katajisto 2026-03-29 16:47:50 +03:00
parent 24f3117478
commit 97fe391cda

View File

@ -69,6 +69,11 @@ add2 :: (a: int) -> int {
return a + 2;
} @Command
help :: () -> string {
for console_command_names console_add_output_line(it);
return "";
} @Command
console_command_procs : [..]([]string) -> string;
console_command_names : [..]string;