Skip to content

Instantly share code, notes, and snippets.

View VienosNotes's full-sized avatar

D.Aoki VienosNotes

View GitHub Profile
use v6;
class Growl {
has Str $.app_name;
method new (Str $app_name = "Perl6 Growl Library") {
self.bless(*, app_name => $app_name);
}
use v6;
class Path {
has Str $!path;
method new (Str $str) {
my Str $path;