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

...

Haskell Cat90

by jarkko, November 11, 2008 22:53, 1 refactoring, 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, 1 refactoring, 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, No refactoring, tagged with haskell, raytracer, vector, linear algebra

This is my first serious ha...

69c54cc530fa953e144771c03eccc5a9 Talk