Logo

Programming-Idioms

  • Haskell
  • Pascal

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.

for i in paramcount do
begin
  if paramstr(i)='-v' then 
  begin
    verbose := true;
    break;
  end;
 writeln('verbose is ',verbose);
end.
print("verbose is ${args.contains("-v")}");

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