summaryrefslogtreecommitdiff
path: root/test/programs/index.ts
blob: e0403fd48857efaf6acbbedc091ffcf9899dadc9 (plain)
1
2
3
4
5
6
7
import { join } from 'path';

export namespace TestPrograms {
  export const AddOneThree = Bun.file(
    join(import.meta.dir + '/add-1-3.cps'),
  ).text();
}