5 lines
156 B
Raku
5 lines
156 B
Raku
use MONKEY-TYPING;
|
|
augment class Int {
|
|
method answer { "Life, the Universe, and Everything" }
|
|
}
|
|
say 42.answer; # Life, the Universe, and Everything
|