Skip to content

Instantly share code, notes, and snippets.

@Tux
Created July 11, 2016 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tux/aad6d6ee389a5a19ee26e580071b6521 to your computer and use it in GitHub Desktop.
Save Tux/aad6d6ee389a5a19ee26e580071b6521 to your computer and use it in GitHub Desktop.
use v6;
my $test = qq{Hi there};
class C {
method foo (Str $s) { [ $s.split(" ") ]; }
}
sub progress (*@y) {
@y[0] = @y[0].Str; # Still a bug
} # progress
progress(.perl) for C.new.foo($test);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment