test file for c language
[polyglot.git] / fibonacci.txt
blob2e832bea50f71d85ee65a9e3385fbd13205289d0
1 $i = 0;
2 $n1 = $n2 = 1;
3 print "$n1\n";
4 while ( $i < 9 ) {
5     ($n1, $n2) = ($n2, $n1+$n2);
6     print "$n1\n";
7     $i++;