OMGPL/tests/programs/string/1.omgpl

11 lines
165 B
Plaintext
Raw Normal View History

2021-12-27 13:53:28 +00:00
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);