DLiteScript
Playground
Documentation
Global Functions
Global functions can be called directly without a namespace prefix.
dump
Output the value and type of variables for debugging. Display detailed variable information including data types. Part of the global namespace.
exit
Terminate a program with a custom exit code. Stop script execution immediately with success or error status for shell integration. Part of the global namespace.
printf
Print formatted strings to standard output. Output text with format specifiers for numbers, strings, and booleans to the console. Part of the global namespace.
sprintf
Return a formatted string. Format strings with placeholders for numbers, strings, and booleans for variable assignment. Part of the global namespace.