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