heptagon/examples/MissionComputer_for_Core/verif.ept
Cédric Pasteur e9da3c0313 Added an example ported from SCADE
All the files compile. The code generation was 
not tested yet.
2010-07-28 14:17:54 +02:00

6 lines
145 B
Plaintext

(* This node implements the "implies" logical operator (not(A) or B). *)
fun implies(a, b : bool) returns (c : bool)
let
c = (not a) or b;
tel