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