- or download this
Venus::Path->new('/path/to/nowhere')->throw->error({message => 'Missin
+g file'})
"Missing file"
- or download this
Venus::Path->new('/path/to/nowhere')->catch('open')->message
"Can't open /path/to/nowhere: No such file or directory"
- or download this
Venus::Array->new(['a'..'d'])->call('map', 'uppercase');
...
'C',
'D'
]
- 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 )
]
- 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'});