Modules, Classes
examples/p526/modules.p6
#!/usr/bin/env perl6
use v6;
# Perl5: package
module Person {
our $fname;
our $lname;
}
$Person::fname = "Foo";
$Person::lname = "Bar";
Table of Contents
Comments
In the comments, please wrap your code snippets within <pre> </pre> tags and use spaces for indentation.
comments powered by
Perl 6 Tricks and Treats newsletter
Register to the free newsletter now, and get updates and news.