summaryrefslogtreecommitdiff
path: root/test/test.ts
blob: 89697feb5429c2b2bcb6e7e0478982536ad131d6 (plain)
1
2
3
4
5
6
import { createFn } from "../src";

const adder = createFn("fn(x, map(arr(10,20,30), fn(y, add(x, y))))");

const result = adder(5);
console.log(result);