feat[core]: Expressions and Patterns

This commit is contained in:
vegowotenks 2025-08-15 09:59:45 +02:00
parent 45c02e7e54
commit c02f1b292b
9 changed files with 192 additions and 15 deletions

View file

@ -0,0 +1,8 @@
{-# 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