deepakjois / hs-logo

Logo turtle graphics interpreter in Haskell
http://deepakjois.github.io/hs-logo
BSD 3-Clause "New" or "Revised" License
19 stars 3 forks source link

Read Logo Manual and understand evaluation semantics better #2

Closed deepakjois closed 12 years ago

deepakjois commented 12 years ago

http://www.cs.berkeley.edu/~bh/v2ch14/manual.html

deepakjois commented 12 years ago

I came across a set of blog posts on the evaluation semantics of logo. The author of the post talks about a complicated scheme to evaluate logo tokens, especially for procedures.

However, after thinking a bit, it shouldn't be too difficult to do this using the standard recursive descent parsing to evaluate the function arguments.