repos / jolie.agda.git


jolie.agda.git / src
Eugene Akentyev  ·  2017-01-19

Variable.agda

 1module Variable where
 2
 3open import Data.Integer using ()
 4open import Data.String using (String)
 5open import Data.Product using (_×_)
 6open import Data.Bool using (Bool)
 7open import Data.Nat using ()
 8
 9
10Variable : Set
11Variable = 
12
13data Value : Set where
14  string : String  Value
15  int :   Value
16  bool : Bool  Value
17  double :     Value
18  long :   Value
19  void : Value