Where they go
Many methods that we would normally think of as being on List, Str, Int, Hash, etc. actually belong on Any as well.
For example:
my $a = prompt "Enter a value"; say $a.abs;
Q: Where should .abs be defined in order for this to work?
continued...