now supporting tidal syntax directly

This commit is contained in:
Felix Roos 2022-02-06 23:02:43 +01:00
parent a00f00a7fe
commit bc79986dd2
3 changed files with 26 additions and 3 deletions

View file

@ -96,6 +96,6 @@ export const mini = (...strings: string[]) => {
// includes haskell style (raw krill parsing)
export const h = (string: string) => {
const ast = krill.parse(string);
console.log('ast', ast);
// console.log('ast', ast);
return patternifyAST(ast);
};