Yehezkiel B Syamsuhadi <[EMAIL PROTECTED]> asked:
> What does this line mean?
>
> use CGI qw(:cgi-lib :standard);
The qw operator makes a text into a list by splitting at
the whitespace.
That list is passed to the module as an argument. In
CGI.pm's case these arguments are
Yehezkiel B Syamsuhadi wrote:
> What does this line mean?
>
> use CGI qw(:cgi-lib :standard);
>
> I know that "use CGI;" means to use CGI module but what does
> qw(:cgi-lib :standard) that follow "use CGI" mean?
qw() is a way of building a list without hav
What does this line mean?
use CGI qw(:cgi-lib :standard);
I know that "use CGI;" means to use CGI module but what does qw(:cgi-lib
:standard) that follow "use CGI" mean?
Thanks,
YBS
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]