Erythro/tests/print

13 lines
134 B
Plaintext
Raw Normal View History

2020-09-13 01:26:18 +00:00
void :: main() {
int x;
int y;
int m;
x = 5;
y = 50;
m = 300;
print m;
print y;
print x;
}