7 lines
179 B
TypeScript
7 lines
179 B
TypeScript
|
import * as FS from "https://deno.land/std@0.144.0/fs/mod.ts";
|
||
|
|
||
|
console.log(Deno.args, import.meta.url);
|
||
|
/*
|
||
|
await Deno.mkdir("deep");
|
||
|
await Deno.create(`deep/file.txt`, "sup");
|
||
|
*/
|