Files
trivial_c_plus/test.triv
2026-05-06 23:47:46 -04:00

10 lines
137 B
Plaintext

f = function(a) { return a * 2 }
print f(10)
i = 0
while (i < 3) {
print i
i = i + 1
}
if (1 > 0) { print 10 } else { print 1 }