import Data.Packed.Matrix
import System.Environment
import System.Posix.Unistd
...

Haskell Game of Life in Haskell

by https://www.google.com/accounts/o8/id?id=AItOawmBVe2Qh_TO2UNRW1mfzLCWTyNyTytCJO4, February 24, 2011 00:11, No refactoring, tagged with haskell, game of life

I've been learning Haskell ...

55502f40dc8b7c769880b10874abc9d0 Talk
type IRCHandle = Handle
type LogHandle = Handle
type ChannelName = String
...

Haskell Don't like that explicit 0 ...

by Macha, September 22, 2010 20:16, 2 refactorings, tagged with haskell

Well, the title says it all...

55502f40dc8b7c769880b10874abc9d0 Talk
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 xml, haskell, HaXml

It's a simple command-line ...

2f9c571c7d57b6e2170eae9a372e24b8 Talk
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
module Main where
import List
import Text.Regex.Posix
...

Haskell Graham scan

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

My first experiment with Ha...

630067ad4c10410798d1550152f20d41 Talk
import System.IO
import Data.Word
...

Haskell Raytracer in haskell

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

This is my first serious ha...

69c54cc530fa953e144771c03eccc5a9 Talk