in reply to How can I create a simple Autocad drawing with Perl
Line 292 in CAD::Drawing::IO is:
foreach my $action qw(load save) {
One of the few changes in Perl syntax now requires parentheses around all lists. The following should be a fix:
foreach my $action (qw(load save)) {
You might want to report this as a bug to the author.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How can I create a simple Autocad drawing with Perl
by Lotus1 (Vicar) on Sep 30, 2019 at 00:02 UTC | |
|
Re^2: How can I create a simple Autocad drawing with Perl
by Anonymous Monk on Sep 29, 2019 at 18:19 UTC | |
by afoken (Chancellor) on Sep 29, 2019 at 19:26 UTC | |
by haj (Vicar) on Sep 29, 2019 at 18:47 UTC | |
by Corion (Patriarch) on Sep 29, 2019 at 18:34 UTC |