rve/example/example.c

10 lines
89 B
C
Raw Normal View History

2024-12-06 22:40:52 +00:00
static int mem;
int main() {
int a = 42;
int b = 5;
mem = a*b + 3;
return 0;
}