Elizabeth Hunt
7cc3ef5fa1
Co-authored-by: Lizzy Hunt <lizzy.hunt@usu.edu> Reviewed-on: #1 Co-authored-by: Elizabeth Hunt <elizabeth.hunt@simponic.xyz> Co-committed-by: Elizabeth Hunt <elizabeth.hunt@simponic.xyz>
17 lines
469 B
TypeScript
17 lines
469 B
TypeScript
import { join } from 'path';
|
|
|
|
export namespace TestPrograms {
|
|
export const AddOneThree = Bun.file(
|
|
join(import.meta.dir + '/add-1-3.cps'),
|
|
).text();
|
|
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();
|
|
}
|