[Haskell-cafe] How to build a generic spreadsheet?

2007-02-23 Thread Greg Fitzgerald
I want to write a program where a user would update a bunch of variables, and everything that depends on those variables (and nothing else) are recalculated. Basically, a spreadsheet, but generalized for any computation. Could someone recommend an elegant way to do it or some good reading

Re: [Haskell-cafe] How to build a generic spreadsheet?

2007-02-23 Thread the Edward Blevins
On Fri, Feb 23, 2007 at 02:33:00PM -0800, Greg Fitzgerald wrote: I want to write a program where a user would update a bunch of variables, and everything that depends on those variables (and nothing else) are recalculated. Basically, a spreadsheet, but generalized for any computation. Could

Re: [Haskell-cafe] How to build a generic spreadsheet?

2007-02-23 Thread Sebastian Sylvan
On 2/23/07, Sebastian Sylvan [EMAIL PROTECTED] wrote: On 2/23/07, Greg Fitzgerald [EMAIL PROTECTED] wrote: I want to write a program where a user would update a bunch of variables, and everything that depends on those variables (and nothing else) are recalculated. Basically, a spreadsheet,

Re: [Haskell-cafe] How to build a generic spreadsheet?

2007-02-23 Thread Bryan O'Sullivan
Greg Fitzgerald wrote: I want to write a program where a user would update a bunch of variables, and everything that depends on those variables (and nothing else) are recalculated. http://sigfpe.blogspot.com/2006/11/from-l-theorem-to-spreadsheet.html

Re: [Haskell-cafe] How to build a generic spreadsheet?

2007-02-23 Thread Neil Mitchell
Hi I want to write a program where a user would update a bunch of variables, and everything that depends on those variables (and nothing else) are recalculated. Basically, a spreadsheet, but generalized for any computation. Could someone recommend an elegant way to do it or some good reading