Fold Assignment

From CSE425S Wiki
Revision as of 14:41, 19 June 2019 by Dennis.cosgrove (talk | contribs) (Created page with "Lexical scope is not unique to ML. Nearly all programming languages use lexical scope, including Java. In this assignment we will build foldLeft (which can be easily built w...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Lexical scope is not unique to ML. Nearly all programming languages use lexical scope, including Java. In this assignment we will build foldLeft (which can be easily built with tail recursion) and foldRight (which cannot).