Can't seem to line up (indent) this code correctly in Haskell. Getting error:
parse error on input `<-'
Can anyone spot where the error is at:
evalListSplitAt n stratPref stratSuff [] = return []
evalListSplitAt n stratPref stratSuff xs = do ys` <- stratPref ys
zs` <- stratSuff zs
return (ys` ++ zs`)
where (ys,zs) = splitAt n xs
Cheers.