devdaily home | apple | java | perl | unix | directory | blog

What this is

This file is included in the DevDaily.com "Perl Source Code Warehouse" project. The intent of this project is to help you "Learn Perl by Example" TM.

Other links

The source code

#! /usr/local/bin/perl -w

use v5.6.0;
use base Demo;

my $y : Demo :This($this) = sub : Demo(1,2,3) {};
sub x : Demo(4, 5, 6) :Multi {}
my %z : Demo(hash) :Multi(method,maybe);
# my %a : NDemo(hash);

{
	package Named;

	use base Demo;

	sub Demo :ATTR(SCALAR) { print STDERR "tada\n" }

	my $y : Demo :This($this) = sub : Demo(1,2,3) {};
	sub x : ExplMulti :Demo(4,5,6) {}
	my %z : ExplMulti :Demo(hash);
	my Named $q : Demo;
}

package Other;

my Demo $dother : Demo :This($this) = "okay";
my Named $nother : Demo :This($this) = "okay";

# my $unnamed : Demo;

# sub foo : Demo();




Copyright 1998-2008 Alvin Alexander
All Rights Reserved.
 
devdaily.com is based in louisville, kentucky, and this web site is hosted by godaddy.com