General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
Samurai Josh
Low Level
comments
Comments by "Samurai Josh" (@samuraijosh1595) on "haskell." video.
@Instr is the haskell sieve of erastosthenes youre referring to? primes :: [Int] primes = go [2..] where go (x:xs) = x : go (filter (\a -> a `mod` x /= 0) xs) what's wrong with this??
1
@jboss1073 No lol
1