packages feed

liquidhaskell-0.8.0.2: tests/errors/TerminationExprNum.hs

module TerminationExpr where

{-@ showSep :: _ -> xs:_ -> _ / [xs] @-} -- use xs as reducing param
showSep :: String -> [String] -> String
showSep sep []     = ""
showSep sep [x]    = x
showSep sep (x:xs) = x ++ sep ++ showSep sep xs