Re: [Haskell-cafe] http://www.cs.cornell.edu/icfp/task.htm

2011-02-28 Thread Hauschild, Klaus (EXT)
' [{, foo, /bar, }] results in [FunctionToken [IdentifierToken foo, BinderToken bar]] -Ursprüngliche Nachricht- Von: Vo Minh Thu [mailto:not...@gmail.com] Gesendet: Freitag, 25. Februar 2011 17:44 An: Hauschild, Klaus (EXT) Cc: haskell-cafe@haskell.org Betreff: Re: [Haskell-cafe] http

Re: [Haskell-cafe] http://www.cs.cornell.edu/icfp/task.htm

2011-02-28 Thread Vo Minh Thu
, }] results in [FunctionToken [IdentifierToken foo, BinderToken bar]] -Ursprüngliche Nachricht- Von: Vo Minh Thu [mailto:not...@gmail.com] Gesendet: Freitag, 25. Februar 2011 17:44 An: Hauschild, Klaus (EXT) Cc: haskell-cafe@haskell.org Betreff: Re: [Haskell-cafe] http

[Haskell-cafe] http://www.cs.cornell.edu/icfp/task.htm

2011-02-25 Thread Hauschild, Klaus (EXT)
Hi, Currently I'm trying to lern Haskell by doing. After doing some examples I plan to solve an ICFP task (see subject). In short: build an interpreter for a stack based language thata describes a 3D scene. Ray trace this scene in an image. My current source state can be found here:

Re: [Haskell-cafe] http://www.cs.cornell.edu/icfp/task.htm

2011-02-25 Thread Vo Minh Thu
2011/2/25 Hauschild, Klaus (EXT) klaus.hauschild@siemens.com: Hi, Currently I'm trying to lern Haskell by doing. After doing some examples I plan to solve an ICFP task (see subject). In short: build an interpreter for a stack based language thata describes a 3D scene. Ray trace this scene

Re: [Haskell-cafe] http://www.cs.cornell.edu/icfp/task.htm

2011-02-25 Thread Tobias Schoofs
Hi Klaus, from your code I cannot tell where exactly you're stuck. A general hint may be to have a look at the parsec library. On 02/25/2011 09:51 AM, Hauschild, Klaus (EXT) wrote: Hi, Currently I'm trying to lern Haskell by doing. After doing some examples I plan to solve an ICFP task