This website requires JavaScript.
Explore
Help
Register
Sign in
aparler
/
RosettaCodeData
Watch
1
Star
0
Fork
You've already forked RosettaCodeData
0
Code
Issues
12
Pull requests
3
Projects
Releases
Packages
Wiki
Activity
Actions
remove-colons
RosettaCodeData
/
Task
/
Loops-While
/
Elena
/
loops-while.elena
11 lines
116 B
Text
Raw
Permalink
Normal View
History
Unescape
Escape
Initial data commit
2023-07-01 11:58:00 -04:00
public program()
{
int i := 1024;
while (i > 0)
{
Data update
2024-03-06 22:25:12 -08:00
console.writeLine(i);
Initial data commit
2023-07-01 11:58:00 -04:00
i /= 2
}
}
Reference in a new issue
Copy permalink