On Thu, Aug 04, 2005 at 10:55:12AM +0400, Andrew Shitov wrote:
> why do we have to give up a space when calling functions under Pugs?
>
> A need to type open('file.txt') instead of open ('file.txt') makes
> me perplexing (not perl-flexing ;-) Our recent discussions in 'zip with()'
> gave no answer.
This is so:
print (1+2)*3;
can print 9, instead of 3.
However, all three forms below should still work:
open('file.txt');
open ('file.txt');
open 'file.txt';
Thanks,
/Autrijus/
pgpIEHptn5Egl.pgp
Description: PGP signature
