Please enable JavaScript in your browser!
Ana Sayfa
Keşfet
Yardım
Giriş Yap
bavier
/
rosetta-code-compiler-forth
İzle
1
Yıldızla
0
Çatalla
0
Dosyalar
Sorunlar
0
Değişiklik İstekleri
0
Wiki
Ağaç:
2de7b68400
Dallar
Biçim İmleri
master
rosetta-code...
/
tests
/
input
/
count.in
count.in
95 B
Geçmiş
Ham
1
2
3
4
5
6
count = 1;
while (count < 10) {
print("count is: ", count, "\n");
count = count + 1;
}