Skip to content
Snippets Groups Projects
Commit 55b86f39 authored by Leandre Lacourt's avatar Leandre Lacourt
Browse files

fix: correct a test file

test file appli_para is now correct and can be launched
parent 0addd145
No related branches found
No related tags found
No related merge requests found
......@@ -23,17 +23,17 @@ IMPORTANT: Ici on compile en --no-prefix pour avoir du code + lisible
node D(x: int) returns (o: int);
let
o = 0 -> (x - pre x) / 2;
o = x / 2;
tel
node A(x: int) returns (o: int);
let
o = x + (0 -> pre o);
o = x * x;
tel
node C(x, y: int) returns (o: int);
let
o = 0 -> pre (x + y);
o = x + y;
tel
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment