8 lines
195 B
Haskell
8 lines
195 B
Haskell
{-# LANGUAGE Safe #-}
|
|
module Language.Scalie.Core.Expression (Expression) where
|
|
import Data.Kind (Type)
|
|
|
|
type Expression :: (Type -> Type) -> Type
|
|
type role Expression nominal
|
|
data Expression f
|
|
|