Initial Commit

This commit is contained in:
2016-01-19 14:26:58 +01:00
parent 36baf73cca
commit 02076b62f5
21 changed files with 947 additions and 0 deletions

11
test/boucle.l Normal file
View File

@@ -0,0 +1,11 @@
entier $i, entier $carre;
main()
{
$i = 0;
tantque $i < 10 faire
{
$carre = $i * $i;
ecrire( $carre );
$i = $i + 1;
}
}