[Wellington-pm] Roundup of last night's meeting ...

Sam Vilain sam at vilain.net
Tue Mar 10 20:52:45 PDT 2009


Richard Hector wrote:
> (($next_meeting eq '2009-04-14')?$not_here:$attending)++
>   

use 5.010;

given ($next_meeting) {
when ('2009-04-14') { $not_here++ }
default { $attending++ }
}


More information about the Wellington-pm mailing list