Skip to content

Instantly share code, notes, and snippets.

@tadzik
Created January 16, 2015 11:35
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 tadzik/7e03879363ea49cbfcfd to your computer and use it in GitHub Desktop.
Save tadzik/7e03879363ea49cbfcfd to your computer and use it in GitHub Desktop.
┌─[tsosnierz@alderaan]─[~]
└─[%]─> cat dupa.pl
use 5.018;
package Foo {
sub new {
bless {}, shift
}
sub bar {
say "yada"
}
}
my $fuuu = Foo->new;
bar$fuuu
┌─[tsosnierz@alderaan]─[~]
└─[%]─> perl dupa.pl
yada
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment