Skip to content

Instantly share code, notes, and snippets.

@zoffixznet

zoffixznet/p.pl Secret

Created September 25, 2018 14:57
Show Gist options
  • Save zoffixznet/cef32c330d22befaf94303149f649a47 to your computer and use it in GitHub Desktop.
Save zoffixznet/cef32c330d22befaf94303149f649a47 to your computer and use it in GitHub Desktop.
package Point;
use 5.022;
use strict;
use warnings;
use Mojo::Base -base;
has [qw/x y/];
package main;
my $total = 0;
for (1..1_000_000) {
my $p = Point->new(x => 2, y => 3);
$total = $total + $p->x + $p->y;
}
say $total;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment