108981c0eb
( = ) in pervasives is a stub, it will be typed in a polymorphic way. This is necessary to have a simple way to transform exp into a static_exp even when there is the = operator.
35 lines
1.2 KiB
Text
35 lines
1.2 KiB
Text
(* The core module *)
|
|
(* To compile : heptc -nopervasives pervasives.epi *)
|
|
type bool = true | false
|
|
type int
|
|
type float
|
|
type string
|
|
val fun (&)(bool;bool) returns (bool)
|
|
val fun ( * )(int;int) returns (int)
|
|
val fun ( *. )(float;float) returns (float)
|
|
val fun (%)(int;int) returns (int)
|
|
val fun (+)(int;int) returns (int)
|
|
val fun (+.)(float;float) returns (float)
|
|
val fun (-)(int;int) returns (int)
|
|
val fun (-.)(float;float) returns (float)
|
|
val fun (/)(int;int) returns (int)
|
|
val fun (/.)(float;float) returns (float)
|
|
val fun ( = )(int;int) returns (bool)
|
|
val fun ( <= )(int;int) returns (bool)
|
|
val fun ( <=. )(float;float) returns (bool)
|
|
val fun ( < )(int;int) returns (bool)
|
|
val fun ( <. )(float;float) returns (bool)
|
|
val fun ( >= )(int;int) returns (bool)
|
|
val fun ( >=. )(float;float) returns (bool)
|
|
val fun ( > )(int;int) returns (bool)
|
|
val fun ( >. )(float;float) returns (bool)
|
|
val fun (not)(bool) returns (bool)
|
|
val fun (or)(bool;bool) returns (bool)
|
|
val fun (xor)(bool;bool) returns (bool)
|
|
val fun (~-)(int) returns (int)
|
|
val fun (~-.)(float) returns (float)
|
|
val fun do_stuff(int) returns (int)
|
|
val fun between(int;int) returns (int)
|
|
|
|
val fun exit(bool) returns ()
|
|
val fun assert(bool) returns ()
|