Files
strudel/packages/mondo
Jade (Rose) Rowland f17a4d045f Publish
- @strudel/codemirror@1.2.3
 - @strudel/core@1.2.3
 - @strudel/csound@1.2.4
 - @strudel/draw@1.2.3
 - @strudel/embed@1.1.1
 - @strudel/gamepad@1.2.3
 - @strudel/hydra@1.2.3
 - @strudel/midi@1.2.4
 - @strudel/mini@1.2.3
 - mondolang@1.1.1
 - @strudel/mondo@1.1.1
 - @strudel/motion@1.2.3
 - @strudel/mqtt@1.2.3
 - @strudel/osc@1.2.3
 - @strudel/reference@1.2.1
 - @strudel/repl@1.2.4
 - @strudel/serial@1.2.3
 - @strudel/soundfonts@1.2.4
 - superdough@1.2.4
 - @strudel/tonal@1.2.3
 - @strudel/transpiler@1.2.3
 - @strudel/web@1.2.4
 - @strudel/webaudio@1.2.4
 - @strudel/xen@1.2.3
2025-08-18 11:46:29 -04:00
..
2025-05-03 20:38:43 +01:00
2025-06-18 22:07:16 +02:00
2025-08-18 11:46:29 -04:00
2025-05-02 16:20:23 +02:00
2025-03-16 02:01:16 +01:00

mondo

a lisp-based language intended to be used as a custom dsl for patterns that can stand on its own feet. see the test folder for usage examples

more info:

Example Usage

import { MondoRunner } from 'mondolang'
// define our library of functions and variables
let lib = {
  add: (a, b) => a + b,
  mul: (a, b) => a * b,
  PI: Math.PI,
};
// this function will evaluate nodes in the syntax tree
function evaluator(node) {
  // check if node is a leaf node (!= list)
  if (node.type !== 'list') {
    // check lib if we find a match in the lib, otherwise return value
    return lib[node.value] ?? node.value;
  }
  // now it can only be a list..
  const [fn, ...args] = node.children;
  // children in a list will already be evaluated
  // the first child is expected to be a function
  if (typeof fn !== 'function') {
    throw new Error(`"${fn}" is not a function`);
  }
  return fn(...args);
}
const runner = new MondoRunner({ evaluator });
const pat = runner.run('add 1 (mul 2 PI)') // 7.283185307179586