Skip to content

Instantly share code, notes, and snippets.

@tadzik
Created August 13, 2011 08:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tadzik/1143598 to your computer and use it in GitHub Desktop.
Save tadzik/1143598 to your computer and use it in GitHub Desktop.
use v6;
#= Our cute, artificial cat (perfect for allergics!)
class Acme::Meow {
has Int $!love = 0;
has Str $!fav = '';
#= pet our kitty
method pet {
$!love++;
$!fav = pick(<milk nip>);
say ~[self!kitty_status, <purr nuzzle meow>.pick,
$!love > 15 ?? '<3' !! ''];
}
#= feed our kitty
method feed {
if self.is_sleeping {
$!love += 0.25
} else {
$!love += 0.5
}
say ~[self!kitty_status, ['crunch', 'lap lap', ''].pick]
}
#= is our kitty sleeping?
method is_sleeping {
0 # cats sleep? They're just pretending.
# They're watching you. All the time.
# or TODO, if you prefer
}
#= handy method to feed your cat with a nip
method nip {
self.feed: 'nip'
}
#= another one to give some milk to our kitty
method milk {
self.feed: 'milk'
}
method !kitty_status {
return 'zZzZ' if self.is_sleeping;
$!love > 5 ?? '=^_^=' !! '=-_-='
}
}
=begin pod
Additional documentation TBD
=end pod
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment