Top 1K Features Creators Events Podcasts Books Extensions Interviews Blog Explorer CSV

pointless

< >

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

#1017on PLDB 4Years Old
Download source code:
git clone https://github.com/pointless-lang/pointless
Homepage · REPL · Try It Online · Source Code

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 Example Token
Comments ✓
Line Comments ✓
- Build the next great programming language · Add · About · Search · Keywords · Livestreams · Labs · Resources · Acknowledgements · Part of the World Wide Scroll