Help for this page

Select Code to Download


  1. or download this
    Venus::Path->new('/path/to/nowhere')->throw->error({message => 'Missin
    +g file'})
    
    "Missing file"
    
  2. or download this
    Venus::Path->new('/path/to/nowhere')->catch('open')->message
    
    "Can't open /path/to/nowhere: No such file or directory"
    
  3. or download this
    Venus::Array->new(['a'..'d'])->call('map', 'uppercase');
    
    ...
      'C',
      'D'
    ]
    
  4. or download this
    Venus::Array->new(['a'..'d'])->call('map', 'box', 'uppercase');
    
    ...
      bless({'value' => bless({'value' => 'C'}, 'Venus::String')}, 'Venus:
    +:Box'),
      bless({'value' => bless({'value' => 'D'}, 'Venus::String')}, 'Venus:
    +:Box )
    ]
    
  5. or download this
    Venus::Array->new(['a'..'d'])->box('call', 'map', 'box', 'uppercase');
    
    ...
      bless({'value' => bless({'value' => 'C'}, 'Venus::String')}, 'Venus:
    +:Box'),
      bless({'value' => bless({'value' => 'D'}, 'Venus::String')}, 'Venus:
    +:Box )
    ]}, 'Venus::Array')}, 'Venus::Box'});