Help for this page

Select Code to Download


  1. or download this
     y|Y|yes|Yes|YES|n|N|no|No|NO
    |true|True|TRUE|false|False|FALSE
    |on|On|ON|off|Off|OFF
    
  2. or download this
    -
      name: Bob Johnson
    ...
      name: George Johnson
      active: false
      happy: true
    
  3. or download this
    #!/usr/bin/env perl          
    use strict;                  
    ...
                                 
    my $data = LoadFile('/tmp/test.yaml');
    print Dumper($data);
    
  4. or download this
    $VAR1 = [
              {
    ...
                'happy' => ${\$VAR1->[0]{'active'}}
              }
            ];
    
  5. or download this
    $VAR1 = [
              {
    ...
                'active' => 'false'
              }
            ];