Help for this page

Select Code to Download


  1. or download this
    dbg and expensive_test();
    
  2. or download this
    use ctflags::parse ns => "myapp:debug", env=>'MYAPPDEBUG';
    
  3. 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";
    
  4. or download this
     $ MYAPPDEBUG=ac perl myapp.pl
    
  5. or download this
    a flag is on
    c flag is on