19 lines
418 B
Plaintext
19 lines
418 B
Plaintext
/*
|
|
***************************************
|
|
*** Helpers.hws Example : HL.Safe() ***
|
|
***************************************
|
|
*/
|
|
|
|
@INCLUDE "../../+Includes.hws"
|
|
@INCLUDE #INC_HELPERS
|
|
|
|
NPrint("HL.Safe Example")
|
|
NPrint("---------------\n")
|
|
|
|
Local Uninitialized = Nil
|
|
Local initialized = "Hello!"
|
|
NPrint(HL.Safe(Uninitialized) .. " - " .. HL.Safe(Initialized))
|
|
|
|
NPrint("\n--- Left mouse button to quit ---")
|
|
WaitLeftMouse()
|