Perl 6 Rakudo Perl - Perl 6 on Parrot #26

Hot Fudge

The 'fudge' pre-processor allows per-implementation skip/todo markers

Typical usage in test file:

#?rakudo skip 'NaN not implemented'
ok(sqrt(-1), NaN, 'sqrt(-1) is NaN');

For rakudo, fudge converts this to:

skip(1,'NaN not implemented');
#  { ok(sqrt(-1), NaN, 'sqrt(-1) is NaN');
#  }
continued...
Copyright © 2008
http://www.pmichaud.com/2008/pres/