1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 17:04:47 +03:00

Define a Term datatype.

This commit is contained in:
Rob Rix 2019-07-17 11:05:50 -04:00
parent 3c664ece81
commit a9508fa516
No known key found for this signature in database
GPG Key ID: F188A01508EA1CF7

View File

@ -1,2 +1,7 @@
module Data.Term
() where
( Term(..)
) where
data Term sig a
= Var a
| Term (sig (Term sig) a)