- or download this
Global symbol "$buffer" requires explicit package name at ...
Global symbol "@output" requires explicit package name at ...
Global symbol "%states" requires explicit package name at ...
- or download this
my ($buffer, @output, %states);
- or download this
our ($buffer, @output, %states);
- or download this
package DFA;
sub new {
...
$dfa; # return the new object
}
...
- or download this
sub argout {
my $dfa = shift; # $dfa here is equivalent to 'this' in Java
...
my $dfa = DFA->new();
$dfa->argout();