Changeset 2379 for trunk/doc/misc/perlCodeConventions.tex
- Timestamp:
- Nov 16, 2004, 2:08:50 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/doc/misc/perlCodeConventions.tex (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/misc/perlCodeConventions.tex
r2378 r2379 1 %%% $Id: perlCodeConventions.tex,v 1.2 0 2004-11-16 23:40:04jhoblitt Exp $1 %%% $Id: perlCodeConventions.tex,v 1.21 2004-11-17 00:08:50 jhoblitt Exp $ 2 2 \documentclass[panstarrs]{panstarrs} 3 3 … … 469 469 470 470 Comments should not be used to comment out large sections of code. When 471 deactivating 2 or fewer lines of code a \code{#} should be used at the very472 beginning of the line(s).471 deactivating 2 or fewer lines of code a double hash (\code{##}) should be used 472 at the very beginning of the line(s). 473 473 474 474 Example of deactivating a single line code. … … 476 476 \begin{verbatim} 477 477 if ($foo) { 478 # print("foo");478 ## print("foo"); 479 479 } 480 480 \end{verbatim}
Note:
See TracChangeset
for help on using the changeset viewer.
