From MainstreamInfluenceOfFunctionalLanguages
For an example of a Lisp-like language with non-Lisp-like syntax, check out Egil Möller's Sugar (http://redhog.org/Projects/Programming/Current/Sugar/). Sugar adds indentation-sensitive syntax (ala Python) to Scheme! Here's a "taste" of Sugar using the ubiquitous Scheme factorial example. -- ChristopherPeterson
> define > fac x > if > = x 0 > 1 > * x > fac > - x 1Blech!! Just put back the fuckin' parentheses already! Lemme guess, does "Sugar" refer to SyntacticSugar? -- SmugLispWeenie