mirror of
https://github.com/denoland/deno.git
synced 2024-12-13 02:52:54 -05:00
1f1b16d548
Closes #27024
7 lines
148 B
Text
7 lines
148 B
Text
3
|
|
function add(a: number, b: number) {
|
|
return a + b;
|
|
}
|
|
|
|
console.log(add(1, 2));
|
|
console.log(Deno.readTextFileSync(import.meta.filename!).trim());
|