Spread Sheet
A simple spread sheet using sub_arctic.
Based on the SpreadSheet example provided with the JDK1.0.2.
Short form of the instructions :
- Cells that you want to be values should start their
contents with the letter v. I.e. v20 for the "value" 20.
- Cells that you want to be formulas should start with
the letter f. I.e. fA1+B1 is a formula which computes
the sum of cells A1 and B1. The names of the cells must
use a capital letter. Formulas may only include one
operator.
- Cells that you want to be labels should begin with
the letter l.
spread_sheet.java
grid.java
Colleen Kehoe