Skip to content

Instantly share code, notes, and snippets.

@jnthn
Created March 2, 2016 12:25
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 jnthn/ee65e3be80f4a5485944 to your computer and use it in GitHub Desktop.
Save jnthn/ee65e3be80f4a5485944 to your computer and use it in GitHub Desktop.
class A {
has $.x;
}
my $a = A.new(x => 42);
my $y;
loop (my int $i = 0; $i < 10000000; $i++) {
$y = $a.x;
}
say $y;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment