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.

Hello world

Basic printing and variables.

examples/hello.pln

Download here

Calculator

Functions and arithmetic logic.

examples/calculator.pln

Download here

Todo manager

Lists, dictionaries, and loops.

examples/todo_manager.pln

Download here

Inventory system

Data structures and conditions.

examples/inventory.pln

Download here

Enterprise API

Endpoints, async, and classes.

examples/enterprise_api.pln

Download here

String checks

Starts with, ends with, and comparisons.

examples/string_comparison.pln

Download here

File processor

File reading, writing, and processing.

examples/file_processor.pln

Download here

Data analyzer

Data processing with lists and dictionaries.

examples/data_analyzer.pln

Download here

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"