feat: Ability to specify integer definitions
This commit is contained in:
parent
4bd766027f
commit
bf525c2dfd
11 changed files with 142 additions and 12 deletions
9
src/Language/Scalie/Ast/Expression.hs
Normal file
9
src/Language/Scalie/Ast/Expression.hs
Normal file
|
@ -0,0 +1,9 @@
|
|||
{-# LANGUAGE Safe #-}
|
||||
module Language.Scalie.Ast.Expression (Expression(..)) where
|
||||
|
||||
import Prelude (Integer)
|
||||
import Data.Kind (Type)
|
||||
|
||||
type Expression :: Type
|
||||
data Expression
|
||||
= RawInt Integer
|
Loading…
Add table
Add a link
Reference in a new issue