Plan 9 from Bell Labs’s /usr/web/sources/contrib/fernan/nhc98/tests/conformance98/import/emptyprelude/Cons.hs
module Cons where import Prelude () cons :: a -> [a] -> [a] cons h t = h : t