4 lines
107 B
Raku
4 lines
107 B
Raku
|
|
# with a (non-hygienic) macro
|
||
|
|
macro assert ($x) { "$x or die 'assertion failed: $x'" }
|
||
|
|
assert('$a == 42');
|