LuaCalc Code
Status: Alpha
Brought to you by:
ricardonz
LuaCalc A simple spreadsheet program/interactive api written in lua. Copyright (C) 2006 Richard Simes You may distribute this program under the terms of the GNU General Public License. see COPYING and gpl.txt for details. Enhancement By K.Plate, a new Dev since April 2008 Installation: You will need to install the latest wxLua from: http://wxlua.sourceforge.net/ And copy wxlua(.exe) into the same directory as luacalc. Alternatively, you can run luacalc using luaAIO Windows: Run 'luacalc.bat' Linux: Run wxlua luacalcui.wx.lua or: lua -i luacalc.lua write a value to a cell using: > luacalc.sheet[1][1]=7 or > luacalc.sheet[1][2]=" A string" or > luacalc.sheet[1][3]="=CONCATENATE(A1, A2)" inspect a cell with: > =A3 7 A string