Language Reference

Documentation and examples for the language features of Pointless

The language reference describes the core language features of Pointless. The reference is divided into chapters, each covering the syntax, semantics, and use of a part of the language. Use the links below to view each chapter. For information on the language's built-in functions, see the standard library docs.


Reading Example Code

Most code samples, like the example below, show the values generated by the code, including:

word = "time"
print(word)

"what $word is it?"
"$word to get a watch."

backwards = reverse(word)
time
"what time is it?"
"time to get a watch."
backwards =
"emit"