StyLang/input.txt
2018-11-15 18:11:16 +02:00

7 lines
145 B
Plaintext

double x = (double)15;
int y = 20;
// print "x + y = " + (x + y);
print "x + y = " + (x + (double)y);
print 20 / 5 + (2 + 2) * 2 - (2 + 2 * 2);