📅  最后修改于: 2022-03-11 14:59:49.284000             🧑  作者: Mango
/**
* write.ts
*/
await Deno.writeTextFile("./hello.txt", "Hello World!");
console.log("File written to ./hello.txt");
/**
* Output: File written to ./hello.txt
*/