{-# OPTIONS_GHC -fno-warn-deprecations #-} module Effectful.Zoo.Prim ( type (<:), type (<<:) ) where import Effectful ((:>), (:>>)) type (<:) r e = (:>) e r type (<<:) r e = (:>>) e r