See Original text in context
multi sub unlike(Str() , Regex , = "text does not match $expected.raku()")
Used this way:
unlike 'foo', /bar/, 'foo does not look like bar';
Marks a test as passed if the first parameter, when coerced to a string, does not match the regular expression specified as the second parameter. The function accepts an optional description of the test, which defaults to printing the text that did not match.