Please enable JavaScript in your browser!
Strona główna
Odkrywaj
Pomoc
Zaloguj się
bavier
/
rosetta-code-compiler-forth
Obserwuj
1
Polub
0
Forkuj
0
Pliki
Problemy
0
Oczekujące zmiany
0
Wiki
Drzewo:
2de7b68400
Gałęzie
Tagi
master
rosetta-code...
/
tests
/
input
/
count.in
count.in
95 B
Historia
Czysty
1
2
3
4
5
6
count = 1;
while (count < 10) {
print("count is: ", count, "\n");
count = count + 1;
}