Ruby mixins aren't really callbacks - they insert new methods into classes / objects. Some of those methods might be used as callbacks, but a clearer example of callbacks in ruby are code blocks/Procs
You can do mixins in Perl as well, by using Exporter to import methods into an OO class. CGI::Application uses this technique to add methods via plugins.