Function: Define

Usage: @define_once(Raw_String Const_name, String Const_value) Defines a constant. Constants cannot be modified and are case sensitive. If you try to modify a constant with this functions, it won't return an error, unlike define. <#cws
@define_once(PAGE_NAME, "Function : Define_once")
@print(PAGE_NAME)
#>
Result: Function : Define_once

See also

define