Perthon | Python-to-Perl Language Translation |
Perthon To-Do
Future PlansWe might at some point wrap this in a Filter::Simple for convenience of use: use Python; def hello(who): print "Hello", who, ", There's more than one way to do it!" hello("Python")or to mixing Perl and Python: sub hello { return "hello"; } &world(); use Python; def world(): print hello(), "world" |