Added Helpers library

This commit is contained in:
Fabio
2025-05-03 10:00:37 +02:00
parent 831c12a439
commit c9f1d7c8ca
11 changed files with 4240 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
/*
***********************************************
*** Helpers.hws Example : HL.ParseRunArgs() ***
***********************************************
************************************************************************
*** THIS EXAMPLE MUST BE COMPILED AND EXECUTED USING THE COMMANDLINE ***
*** WITH SOME Argument - value PAIRS ***
*** Example: prompt>compiled.exe -param1 first -param2 second ***
************************************************************************
*/
@INCLUDE "../../+Includes.hws"
@INCLUDE #INC_HELPERS
NPrint("HL.ParseRunArgs Example")
NPrint("---------------------\n")
Local Arguments = HL.ParseRunArgs(False)
ForEach(Arguments, NPrint)
NPrint("\n--- Left mouse button to quit ---")
WaitLeftMouse()