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

Zuo

< >

Zuo, aka derived from the Chinese word for “make.”, is an open source programming language created in 2022 by Matthew Flatt.

#2124on PLDB 2Years Old
Spec · Docs

A Tiny Racket for Scripting


Example from the web:
#lang zuo/datum ;; The classic toy benchmark (provide fib) (define input (let ([args (hash-ref (runtime-env) 'args)]) (if (null? args) 30 (string->integer (car args))))) (define (fib n) (cond [(= n 0) 1] [(= n 1) 1] [else (+ (fib (- n 1)) (fib (- n 2)))])) (fib input)

- Build the next great programming language · Add · About · Search · Keywords · Livestreams · Labs · Resources · Acknowledgements

Built with Scroll v144.0.0