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

clay

< >

clay is a programming language created in 2010 by KS Sreeram and Joe Groff.

Source code:
git clone https://github.com/jckarter/clay
#509on PLDB 14Years Old

The Clay programming language


Example from the web:
import printer.(println); factorial1(n) { if (n == 0) return 1; return n*factorial1(n-1); } factorial2(n) { var p = 1; again : if (n == 0) return p; p *: n; n -: 1; goto again; } factorial3(n) { var p = 1; while (true) { if (n == 0) break; p *: n; n -: 1; } return p; } factorial4(n) { var p = 1; for (i in range(n)) p *: i+1; return p; } main() { var n = 7; n -: 1; var f = factorial4(n); println("factorial(", n, ") = ", f); return 0; }

Language features

Feature Supported Token Example
Comments ✓
MultiLine Comments ✓
Line Comments ✓
Integers ✓
Hexadecimals ✓
Print() Debugging ✓ println

View source

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