TwitAA 2012-01-12 11:39:28 [TwitAA 2012-01-12 11:39:28] import List iSort :: (Ord a) => [a] -> [a] iSort [] = [] iSort (x:xs) = insert x $ iSort xs