Help for this page

Select Code to Download


  1. or download this
    --- C.pm_orig   2021-12-20 22:11:48 +1100
    +++ C.pm        2022-06-27 19:27:27 +1000
    ...
             if ($key eq 'FILTERS') {
                 next if $value eq '1' or $value eq '0'; # ignore ENABLE, 
    +DISABLE
                 $value = [$value] unless ref($value) eq 'ARRAY';
    
  2. or download this
    use warnings;
    
    ...
    EOC
    
    foo(42);
    
  3. or download this
    #include "bar.h"
    
    int bar (int in) {
      return in;
    }
    
  4. or download this
    #include "baz.h"
    
    int baz (int in) {
      return in + 1;
    }
    
  5. or download this
    bar: 42
    baz: 43