Please enable JavaScript in your browser!
Startsida
Utforska
Hjälp
Logga in
bavier
/
rosetta-code-compiler-forth
Bevaka
1
Stjärnmärk
0
Fork
0
Filer
Ärenden
0
Pull-förfrågningar
0
Wiki
Träd:
2de7b68400
Grenar
Taggar
master
rosetta-code...
/
tests
/
input
/
count.in
count.in
95 B
Historik
Rå
1
2
3
4
5
6
count = 1;
while (count < 10) {
print("count is: ", count, "\n");
count = count + 1;
}