Penguin
Diff: HigherOrderFunctions
EditPageHistoryDiffInfoLikePages

Differences between version 3 and revision by previous author of HigherOrderFunctions.

Other diffs: Previous Major Revision, Previous Revision, or view the Annotated Edit History

Newer page: version 3 Last edited on Thursday, August 7, 2003 3:39:17 am by AristotlePagaltzis Revert
Older page: version 2 Last edited on Tuesday, June 3, 2003 11:43:37 pm by GlynWebster Revert
@@ -1,9 +1,9 @@
 Higher-order functions are functions that take other functions as parameters, create functions or return functions. 
  
 The use of higher-order functions with PolymorphicTypes results in a style of programming that rivals ObjectOrientedProgramming for expressiveness. 
  
-[ML], [Haskell], [Lisp ], [Python] all allow full use of high-order functions. [C] allows you to pass functions as arguments, but their usefulness is rather limited. 
+[ML], [Haskell], [LISP ], [Python] all allow full use of high-order functions. [C] allows you to pass functions as arguments, but their usefulness is rather limited. 
  
 !!!An Example 
  
 (This follows on from the the example in PolymorphicTypes.)