Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created October 4, 2019 22:26
Whateverable
2019-10-04T21:42:33Z #perl6 <SmokeMachine> guifa maybe this could help you: `class NotDate is Date { method year(\SELF:) { do if SELF.VAR.of === ::?CLASS { "do something else" } else { SELF.Date::year } } }; my Date $d = NotDate.today; say $d.year; my NotDate $n = NotDate.today; say $n.year`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment