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();
|
2024-02-28 14:59:28 -05:00
|
|
|
export const PrimopScope = Bun.file(
|
|
|
|
join(import.meta.dir + '/primop-scope.cps'),
|
|
|
|
).text();
|
|
|
|
export const StringEquality = Bun.file(
|
|
|
|
join(import.meta.dir + '/string-equal.cps'),
|
|
|
|
).text();
|
|
|
|
export const StringInEquality = Bun.file(
|
|
|
|
join(import.meta.dir + '/string-unequal.cps'),
|
|
|
|
).text();
|
2024-02-23 19:27:16 -05:00
|
|
|
}
|