- or download this
dbg and expensive_test();
- or download this
use ctflags::parse ns => "myapp:debug", env=>'MYAPPDEBUG';
- or download this
use ctflags prefix=>'dbg_', 'myapp:debug:*';
dbg_a and print "a flag is on\n";
dbg_b and print "b flag is on\n";
dbg_c and print "c flag is on\n";
- or download this
$ MYAPPDEBUG=ac perl myapp.pl
- or download this
a flag is on
c flag is on