1
2
3
4
module Main where

import Text.XML.HaXml
...

Haskell Code from a novice Haskell ...

by jaewon.mp, February 03, 2010 10:21, No refactoring, tagged with haskell, HaXml, xml

It's a simple command-line ...

2f9c571c7d57b6e2170eae9a372e24b8 Talk
1
2
3
4
main = do s <- getContents
          putStr (unlines (reverse (rotate (lines s))))

...

Haskell Cat90

by jarkko, November 11, 2008 22:53, 3 refactorings, tagged with haskell

Rotates text given in stdin...

630067ad4c10410798d1550152f20d41 Talk
1
2
3
4
module Main where
import List
import Text.Regex.Posix
...

Haskell Graham scan

by jarkko, October 29, 2008 19:52, 2 refactorings, tagged with haskell, gtk, cairo, algorithm

My first experiment with Ha...

630067ad4c10410798d1550152f20d41 Talk
1
2
3
import System.IO
import Data.Word
...

Haskell Raytracer in haskell

by jaggederest, September 01, 2008 21:23, 1 refactoring, tagged with haskell, raytracer, vector, linear algebra

This is my first serious ha...

69c54cc530fa953e144771c03eccc5a9 Talk