How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

Introducing ZuzuScript

calendar_today June 1, 2026 person Toby Inkster domain perl
So I’ve created a programming language which blends a fairly JavaScript-like syntax with fairly Perl-like semantics, and a few other features that I haven’t really seen in many programming languages. This Perl: use Path::Tiny; my $str = uc(substr(Path::Tiny->new(“myfile.txt”)->slurp_utf8, 0, 80)); Becomes this in ZuzuScript: from std/path import Path; let str := new Path(“myfile.txt”) ▷ ^^.slurp_utf8 ▷ ^^[0:80] ▷ uc ^^; The ▷ operator means “evaluate the left side, then evaluate the right side with ^^ set to the result of the left side”. It’s conceptually similar to in shells and seems to ma
open_in_new Read original post