Please enable JavaScript in your browser!
Home
Explore
Help
Sign In
bavier
/
rosetta-code-compiler-forth
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Branch:
master
Branches
Tags
master
rosetta-code...
/
tests
/
input
/
100_doors.in
100_doors.in
104 B
Permalink
History
Raw
1
2
3
4
5
6
7
/* 100 Doors */
i = 1;
while (i * i <= 100) {
print("door ", i * i, " is open\n");
i = i + 1;
}