KiXtart is a free-format scripting language. The language is case-insensitive. This means that
IF
@PRIV="ADMIN" DISPLAY "ADMIN.TXT" ELSE DISPLAY
"USER.TXT" ENDIF
is equivalent to
If
@PRIV = "ADMIN"
Display "ADMIN.TXT"
Else
Display "USER.TXT"
Endif
When using KiXtart, note the following rules:
· Strings can contain any characters, except the \0 (NULL) and \x1a (end of file) characters.
· Script commands should be separated by white space — that is, any combination of spaces, tabs, or new line characters.
· Strings must be enclosed in quotation marks. For example:
'String with a dash (-) in it.' ; String with a dash (-) in it.