Sfoglia il codice sorgente

add inspiration resources.

Lucas Stadler 11 anni fa
parent
commit
0582f53b92
1 ha cambiato i file con 9 aggiunte e 0 eliminazioni
  1. 9 0
      hs/DataStructures.hs

+ 9 - 0
hs/DataStructures.hs

@ -1,3 +1,12 @@
1
{-|
2
    Module: DataStructures
3
    Description: Having fun with (functional) data structures
4
5
    Inspired by:
6
7
      * Purely Functional Data Structures, by Chris Okasaki
8
      * <http://www.infoq.com/presentations/Functional-Data-Structures-in-Scala Functional Data Structures in Scala>, by Daniel Spiewak
9
-}
1 10
module DataStructures where
2 11
3 12
import Prelude hiding (concat, drop, last, length, reverse, take)