Top 1,000 Features Creators Resources Blog Explore Download
GitHub icon

pointless

< >

pointless is a programming language created in 2020 by Avery N. Nortonsmith.

Source code:
git clone https://github.com/pointless-lang/pointless
#996on PLDB 4Years Old

Try now: TIO

Pointless: a scripting language for learning and fun


Example from the web:
import "chart.ptls" as chart output = iterate(collatzStep, 175) |> takeWhile(greaterThan(1)) |> chart.scale(8) |> println collatzStep(n) = if n % 2 == 0 then n / 2 else n * 3 + 1

Language features

Feature Supported Token Example
Comments ✓
Line Comments ✓

View source

- Build the next great programming language · About · Acknowledgements · Extensions · Day 625 · feedback@pldb.io