Skip to content

Instantly share code, notes, and snippets.

@ingydotnet
Created July 8, 2010 22:22
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 ingydotnet/468744 to your computer and use it in GitHub Desktop.
Save ingydotnet/468744 to your computer and use it in GitHub Desktop.
class Foo;
method xyz($name) {
say ">> $name";
}
[perl][utf-8:unix]~/Foo.pm 1:1 20%
my $class_name = 'Foo';
eval "use $class_name";
my $class = eval "$class_name";
$class.new.xyz("hello");
[perl][utf-8:unix]~/t.pl 1:1 25%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment