cps-interpreter/test/programs/index.ts

8 lines
159 B
TypeScript
Raw Normal View History

2024-02-23 19:27:16 -05:00
import { join } from 'path';
export namespace TestPrograms {
export const AddOneThree = Bun.file(
join(import.meta.dir + '/add-1-3.cps'),
).text();
}