Resources
Examples
Explore complete programs and reusable patterns from the examples folder.
Example highlights
- Small scripts to learn syntax.
- Data structures and loops.
- API focused demos.
Project examples
Each file in the examples folder focuses on one topic or pattern.
Sample snippet
This example highlights readable flow control and list iteration.
examples/loop.pln
create a list named numbers with [1, 2, 3, 4]
for each number in numbers do print number
if numbers is empty then print "No numbers"