haskell

Lazy Evaluation in Haskell

Lazy evaluation is a code execution mechanism which defers the evaluation of an expression until its value is needed. This comes in handy ..

4 years ago
0
11190

Extending Clojure Syntax Using Macros

Macros in Clojure (and in other Lisps) are an elegant and powerful tool that allows programmers to add new layers of abstraction, to the point ..

4 years ago
0
1893

Implementing a Spell Checker in Clojure

Spell checkers are used to determine the correctness of the spelling of a word and notify users about misspellings. Though spell checkers ..

5 years ago
0
2500