The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Here is some sample code:

    :::python
    import sys
    def main(argv=sys.argv):
        logging.basicConfig()
        log.info('hi')

and:

    :::ruby
    use 'zlib'
    sub main(argv)
        puts 'hi'
    end