in reply to When does programming become automatic (if ever)?
What tools are pros using to fix or avoid basic syntax errors? If I code for a couple of hours and then run the code, I regularly find a dozen or so basic errors like missing semicolons, misspelled variables, unmatched brackets, etc. I'm using syntax highlighting in vim which helps to a degree but misses some really obvious stuff.
$PM = "Perl Monk's";
$MCF = "Most Clueless Friar Abbot Bishop Pontiff Deacon Curate";
$nysus = $PM . ' ' . $MCF;
Click here if you love Perl Monks
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: When does programming become automatic (if ever)?
by choroba (Cardinal) on Apr 14, 2016 at 19:09 UTC | |
|
Re^2: When does programming become automatic (if ever)?
by hippo (Archbishop) on Apr 14, 2016 at 20:45 UTC | |
by nysus (Parson) on Apr 15, 2016 at 05:35 UTC |