KiXtart is a programming language created in 1991.
#1265on PLDB | 33Years Old |
KiXtart is a closed source free-format scripting language for Windows. It is described as a logon script processor and enhanced batch scripting language by the official website. Its name is a portmanteau of "kick start".. Read more on Wikipedia...
; Read value from registry
$ProductID = ReadValue("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion","ProductId")
; Display result or error message
If @ERROR = 0
? "ProductID=$ProductID"
Else
? "Error reading product ID"
Endif
?
; Done
Exit @ERROR
Feature | Supported | Example | Token |
---|---|---|---|
Comments | ✓ | ; A comment | |
Line Comments | ✓ | ; A comment | ; |
Semantic Indentation | X |