D:\>perl -we "print('foo')" foo D:\>perl -we "print ('foo')" print (...) interpreted as function at -e line 1. foo D:\>perl -we "print ('foo')" foo D:\>perl -we "no warnings qw/syntax/; print ('foo')" foo D:\>