Complete set of Indentation rules in haskell
问题 From where can I get complete set of Indentation rules for Haskell code writing? Past SO questions which are similar to my following question has led me to ask above question. What are the reasons behind the error message: parse error on input 'something' ? Error message I got: baby.hs:103:2: parse error on input `myList'(error in this line) Code I am trying to compile: myList = ["aeroplane", "Aeroplane", "AeRoPlAne", "helicopter", "HELICOPTER", "Zebra"] quicksort :: (Ord a) => [a] -> [a]