I built k-synth as an experiment to see if a minimalist, K-inspired array language could make sketching waveforms faster and more intuitive than traditional code. I’ve put together a web-based toolkit so you can try the syntax directly in the browser without having to touch a compiler:<p>Live Toolkit: https://octetta.github.io/k-synth/<p>If you visit the page, here is a quick path to an audio payoff:<p>- Click "patches" and choose dm-bell.ks.<p>- Click "run"—the notebook area will update. Click the waveform to hear the result.<p>- Click the "->0" button below the waveform to copy it into slot 0 at the top (slots are also clickable).<p>- Click "pads" in the entry area to show a performance grid.<p>- Click "melodic" to play slot 0's sample at different intervals across the grid.<p>The 'Weird' Stack:<p>- The Language: A simplified, right-associative array language (e.g., s for sine, p for pi).<p>- The Web Toolkit: Built using WASM and Web Audio for live-coding samples.<p>- AI Pair-Programming: I used AI agents to bootstrap the parser and web boilerplate, which let me vet the language design in weeks rather than months.<p>The Goal: This isn't meant to replace a DAW. It’s a compact way to generate samples for larger projects. It’s currently in a "will-it-blend" state. I’m looking for feedback from the array language and DSP communities—specifically on the operator choices and the right-to-left evaluation logic.<p>Source (MIT): https://github.com/octetta/k-synth