Measures Concepts
GitHub icon

pointless

pointless - Programming language

< >

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

Source code:
git clone https://github.com/pointless-lang/pointless
#1389on 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 · Search · Add Language · Features · Creators · Resources · About · Blog · Acknowledgements · Queries · Stats · Sponsor · Day 605 · feedback@pldb.io · Logout