The Qo Programming Language Documentation version 0.9

The standard library.

Table of Contents

Documentation

print(...)


Print something, multiple values are joined with " " as delimiter.

println(...)


Print something with newline, multiple values are joined with " " as delimiter.

input(prompt)


Get input with specified prompt.

exit(exitcode)


Exit with code.

hasAttr(&root, attribute)


Check if a variable has an attribute.

exists(&variable)


Check if a variable exists.

remove(&variable)


Remove a variable.

move(&variable, &newname)


Move a variable with attributes.

sleep(seconds)


Sleep n seconds.

len(variable)


Get length of something.

chr(asciivalue)


Get character by ASCII value.

ord(character)


Get ASCII value of character.