Skip to content

jgrimes/haskell-triclojure

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Introductory Haskell

This is some supporting code for a talk I gave called "Haskell through Clojure-tinted Glasses" at the TriClojure meetup group.

You can load (for example) Main.hs into ghci to play around with it.

    ghci Main.hs

If you want to try out Copy.hs, you can either compile it with

    ghc --make Main.hs

or open it with ghci and set your arguments

    ghci Copy.hs
    Main> :set args file1 file2
    Main> main

To try out QuickCheck.hs

    ghci QuickCheck.hs
    Main> quickCheck prop_minimum
    Main> quickCheck prop_ordered

Also, some good material online. If you are interested in seeing how pervasive laziness in a language can be used in awesome ways, check out "Why Functional Programming Matters"

Why Functional Programming Matters (PDF Warning)

Learn you a Haskell (also available in print)

Real World Haskell (also available in print)

About

Some supporting code for a talk on introductory Haskell

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published