OpenGL in X11

2003-10-02 Thread Philippe de Rochambeau
Hello, how do you run OpenGL with PERL in X11? Many thanks. Ph

Re: Can I run one Perl script from another ?

2003-10-02 Thread Philippe de Rochambeau
Can I run one Perl script from inside another? Yes you can. Just do it on OSX. I am not sure whether do works on OS9. Ph === test1.pl = #!/usr/bin/perl -w print hello test1.pl; do 'test2.pl'; === test2.pl #!/usr/bin/perl -w print hello test2.pl; === output resulting from

Re: Can I run one Perl script from another ?

2003-10-02 Thread Peter N Lewis
Having spent hours trying to find a simple answer (learning lots along the way), I'm still hoping that there is a simple answer: Can I run one Perl script from inside another? I have a large set of scripts that I usually run one-at-a-time, but I want to create a controlling script so that I

Re: Can I run one Perl script from another ?

2003-10-02 Thread John Delacour
At 11:21 pm -0700 1/10/03, Tim Warner wrote: Can I run one Perl script from inside another? See perlfunc.pod : do EXPR # somedir/date.pl : $datestring = scalar localtime ; # somedir/getdate.pl : $datestring = do 'date.pl'; print $datestring ; JD