10 lines
91 B
Plaintext
10 lines
91 B
Plaintext
i := 0x0;
|
|
|
|
if i > 10 {
|
|
print "a";
|
|
} else if i > 5 {
|
|
print "b";
|
|
} else {
|
|
print "c";
|
|
}
|