Help for this page

Select Code to Download


  1. or download this
    # This is a Cons "Construct" file. It exports a scalar
    # named po, which is received by the perl program
    ...
    Export qw (po);
    Build  qw (tmp/Conscript);
    
  2. or download this
    # This is the tmp/Conscript. I receive serialized data and
    # process it, in this case, simply printing it to STDERR
    ...
    
    use Data::Dumper;
    warn Data::Dumper->Dump([$po],['po']);
    
  3. or download this
    
    $po = {
    ...