in reply to Re: Seeking feedback on Tic-Tac-Toe
in thread Seeking feedback on Tic-Tac-Toe

#!/usr/local/bin/perl -w use strict; use CGI ':standard'; my ($clear,$team,$across,$down,$move,$file,$file2,$line);
is now the begining of the program, however when I tried to put -Tw in I got a error stating it was to late for -T...

Replies are listed 'Best First'.
Re: Re: Re: Seeking feedback on Tic-Tac-Toe
by the_slycer (Chaplain) on Jul 12, 2001 at 04:20 UTC
    If you are attempting to run from the command line you must run it as perl -wT scriptname. Also, if running on windows with IIS, you have to either change the association of (.cgi|.pl) to use perl.exe -wT, or simply run without. I run without, but build my scripts and test on my localmachine (from command line) with perl -wT.
Re: Re: Re: Seeking feedback on Tic-Tac-Toe
by synapse0 (Pilgrim) on Jul 12, 2001 at 04:28 UTC
    seems to be an issue with IIS, as the_slycer pointed out.
    to get more info, do a super search on "too late for -T".
    -Syn0