This commit is contained in:
2022-11-11 16:29:38 +09:00
commit 584f181bdb
13 changed files with 516 additions and 0 deletions

5
cli/cli.js Normal file
View File

@@ -0,0 +1,5 @@
const args = process.argv.slice(2);
args.forEach((val, index) => {
console.log(`${index}: ${val}`);
});