Change test

This commit is contained in:
2016-04-19 09:06:38 +02:00
parent ee739393f1
commit d630e285ba
184 changed files with 16516 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
entier $t0,
entier $t1,
entier $123,
entier $,
entier $$,
entier $$$,
entier $f,
entier $_;
f(entier $$)
entier $$$,
entier $f,
entier $_;
{
$ = $123 + $_ + $$;
ecrire($);
}
main() {
$t0 = 1;
$123 = $t0 + 0;
f($123);
}