CAP/MiniC/TP04/tests/provided/step1/test_var.c

13 lines
119 B
C
Raw Normal View History

2024-10-06 19:58:11 +02:00
#include "printlib.h"
int main() {
int x;
x = 42;
println_int(x);
return 0;
}
// EXPECTED
// 42