Initial commit

This commit is contained in:
2020-05-17 14:36:52 +08:00
commit 8a10db1037
9 changed files with 146 additions and 0 deletions

4
src/main.ts Normal file
View File

@@ -0,0 +1,4 @@
import { get_startup_arguments } from "./tiny/env";
(async function main(argv: string[]) {
console.log(argv);
})(get_startup_arguments());