stefankoegel / clickyEvaluation

Visual tool for stepwise evaluation of simple Haskell expressions
MIT License
20 stars 4 forks source link

Too many evaluation steps at once #44

Open SRechenberger opened 7 years ago

SRechenberger commented 7 years ago

For, e.g., the input zip "abc" (map (1 +) [1,2,3]), clicking the outermost box evaluates map and zip at once, yielding ('a', (1 +) 1) : zip "bc" (map (1 +) [2,3]). Is this behavior desired? Shouldn't the outermost box be inevaluable?