Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
print("verbose is ${args.contains("-v")}");
const verbose = process.argv.includes('-v');
console.log('verbose is', verbose);
public static void main(String[] args) {
boolean b = false;
for (String s : args)
if (s.equals("-v")) {
b = true;
break;
}
out.printf("verbose is %s", b);
}
for i in paramcount do
begin
if paramstr(i)='-v' then
begin
verbose := true;
break;
end;
writeln('verbose is ',verbose);
end.
#!/usr/bin/perl -s
use strict;
use warnings;
use vars qw($v);
$v ||= 0;
print 'verbose is ' . ($v ? 'true' : 'false') . "\n";
The 'use vars' is how you tell Perl that (because of the -s flag) you are getting $v from the command line's -v. If you don't do this (with strict mode on) you will get an error.
let matches = App::new("My Program")
.arg(Arg::with_name("verbose")
.short("v")
.takes_value(false))
.get_matches();
if matches.is_present("verbose") {
println!("verbose is true")
} else {
println!("verbose is false")
}