OMGPL/tests/programs/string/1.omgpl
2021-12-27 16:53:28 +03:00

11 lines
165 B
Plaintext

string s = "";
for (int i = 0; i < 10; i += 1) {
if ((i / 2) * 2 == i) {
s += "a";
}
if ((i / 2) * 2 != i) {
s += "b";
}
}
print(s);