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...