1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-14 03:23:17 -05:00
denoland-deno/tests/specs/compile/include/self/output.out

8 lines
148 B
Text
Raw Normal View History

3
function add(a: number, b: number) {
return a + b;
}
console.log(add(1, 2));
console.log(Deno.readTextFileSync(import.meta.filename!).trim());