Does anyone know if there is a way to do this?
For example this perl code works, but python does not?
#!/usr/bin/perl5.18
main();
sub main {
print 'hello\n';
return;
}
#!/usr/bin/env python3.4
main()
def main():
print('hello')
return
Thanks