Files
2016-04-19 09:06:38 +02:00

10 lines
80 B
Plaintext

entier $a;
main()
{
$a = 0;
tantque $a < 10 faire{
ecrire($a);
$a = $a + 1;
}
}