Skip to content

Instantly share code, notes, and snippets.

@foursixnine
Created December 12, 2022 09:20
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 foursixnine/5f001c5f924e077a713383cfdd9dd0ba to your computer and use it in GitHub Desktop.
Save foursixnine/5f001c5f924e077a713383cfdd9dd0ba to your computer and use it in GitHub Desktop.
Perl static method call
package stuff;
use v5.30;
sub cc {
say 'hello!'.__PACKAGE__;
}
1;
### Small proof of concept to check some concepts
use v5.30;
use stuff;
stuff::cc();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment