Introducing ZuzuScript

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 … Continued

Zuzu JavaScript Runtime Released

zuzu-js 0.1.0 is now available through npm.The JavaScript runtime is now available on npmjs.com. https://www.npmjs.com/package/zuzu-js You can install it using npm install -g zuzu-js. Run simple inline code: zuzu-js -e ‘say(“Hello, world”);’ Run a full script: zuzu-js path/to/script.zzs Compile from ZuzuScript into JavaScript: zuzu-js-compile path/to/script.zzs -o script.js node script.js (The resulting JS file will be … Continued

zuzu-rust Released

zuzu-rust 0.1.0 is now available through cargo.The Rust runtime is now available on crates.io. https://crates.io/crates/zuzu-rust You can install it using npm install -g zuzu-js. Run simple inline code: zuzu-rust -e ‘say(“Hello, world”);’ Run a full script: zuzu-rust path/to/script.zzs

ZuzuScript is born

First release of ZuzuScript for Perl!The Zuzu distribution is now available on CPAN. https://metacpan.org/release/TOBYINK/Zuzu-0.001000 You can install it using cpanm Zuzu. Run simple inline code: zuzu.pl -e ‘say(“Hello, world”);’ Run a full script: zuzu.pl path/to/script.zzs