File:  [LON-CAPA] / loncom / html / adm / help / tex / Attic / Spreadsheet_Lists.tex
Revision 1.1: download - view: text, annotated - select for diffs
Fri Jul 26 19:53:59 2002 UTC (22 years, 1 month ago) by bowersj2
Branches: MAIN
CVS tags: version_0_5_1, version_0_5, HEAD
.tex files from help.loncapa.org largely done. Added some lables to
older files. Last mega-massive .tex commit for a while.

\label{Spreadsheet_Lists}
When you have a list of numbers in a cell, how it is displayed depends
on how you seperate the numbers and how Perl interprets the results.

\textbf{35 45 12} will not generate any result because this is an
invalid perl statement.

\textbf{35,45,12} will have a result of 12 because Perl has a comma
operator similar to the comma operator\index{comma operator} in C.

The comma operator is binary and returns the value on its right. Thus
\texttt{\$variable = 15, 26;} assigns \texttt{\$variable} the value
26.  If you need the values to all be displayed, enclose the entire
cell contents in quotes.  

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>