Skip to content

Instantly share code, notes, and snippets.

@stmuk
Created August 11, 2013 13:21
Show Gist options
  • Save stmuk/6204870 to your computer and use it in GitHub Desktop.
Save stmuk/6204870 to your computer and use it in GitHub Desktop.
#79778: [BUG] .trans from a regex to a string does the Wrong Thing in Rakudo
use v6;
use Test;
is "this sentence no verb".trans( / \s+ / => " " ), 'this sentence no verb',"RT #79778 got expected string" ;
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment