in reply to
rotating cube.
As
hdb
said,
use warnings;
helps spot errors at compile time.
use strict;
is similarly very useful.
Most programs start with:
#!/usr/bin/perl use strict; use warnings;
[download]
Comment on
Re: rotating cube.
Select
or
Download
Code
In Section
Seekers of Perl Wisdom