Re: Learning wxPerl - Program structure
Johan Vromans <[email protected]> Mon, 1 Feb 2016 23:51:49 +0100
| Newsgroups | gmane.comp.lang.perl.wxperl |
|---|---|
| Organization | Squirrel Consultancy |
| Message-ID | <[email protected]> |
On Mon, 01 Feb 2016 22:37:47 +0800 Ron Grunwald <[email protected]> wrote: > Let me know what you think. Good start! A quick couple of technical remarks. No need to use a big font size like 16. It causes excessive line breaks which make program segments very hard to understand. Please avoid hard path names, like #!/usr/local/bin/perl. Better alternatives are "#! perl" or "#! /bin/env perl". Best is to leave this line out. "use 5.14" results in an error. Did you mean "use v5.14"? Keep up the good work, -- Johan