This website works better with JavaScript
Domů
Procházet
Nápověda
Přihlásit se
kjhammerle
/
lonely-tiger
Sledovat
1
Oblíbit
0
Rozštěpit
0
Soubory
Úkoly
0
Pull Requesty
0
Wiki
Strom:
d25325f62a
Větve
Značky
master
lonely-tiger
/
old_tests
/
loops
/
while
while
52 B
Historie
Surový
1
2
3
4
5
a = 0;
while(a < 5) {
print a;
a = a + 1;
}