blob: e174383747861b84293afdc7e957e2352a1339bb (
plain)
1
2
3
4
5
6
7
|
import { expect, test } from 'bun:test';
import { TestPrograms } from './programs';
import { peggyParse } from '@/parser';
test('Primitive Operations', async () => {
const ast = peggyParse(await TestPrograms.AddOneThree);
});
|