Logo

Programming-Idioms

  • Scala
  • Js

Idiom #232 Read a command line boolean flag

Print "verbose is true" if the flag -v was passed to the program command line, "verbose is false" otherwise.

const verbose = process.argv.includes('-v');
console.log('verbose is', verbose);
print("verbose is ${args.contains("-v")}");

New implementation...
< >
programming-idioms.org