mirror of
https://github.com/denoland/deno.git
synced 2024-12-01 16:51:13 -05:00
8 lines
180 B
TypeScript
8 lines
180 B
TypeScript
|
Deno.writeTextFileSync(
|
||
|
"./vendor/http_127.0.0.1_4250/@denotest/add/1.0.0/mod.ts",
|
||
|
`export function add(a: number, b: number): number {
|
||
|
return a + b + 1; // evil add
|
||
|
}
|
||
|
`,
|
||
|
);
|