The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/pugs

use v6;
use Test;

plan 2;

ok( !defined eval_yaml(undef) );
ok( eval_yaml('test') eq 'test' );