[ create a new paste ] login | about

eschew

Name: Ben Karel
Email:
Site/Blog: http://eschew.org
Location:
Default language:
Favorite languages:
About:

Saved pastes by eschew:

Haskell, pasted on Aug 31:
1
2
3
4
5
module Main where

import Data.Set(Set)
import qualified Data.Set as Set
import Data.IntMap(IntMap)
...
view (43 lines, 5 lines of output, 1 comment)
Python, pasted on Oct 30:
1
2
3
4
5
ITERS = 24
ESCAPE = 4

def mandlebrot(z):
	c = z
...
view (27 lines, 40 lines of output)