- removed experimental test lib - fixed watch not outputting errors - updated examples - added TODOs for when standard is made public
9 lines
118 B
C
9 lines
118 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
int a = 3;
|
|
printf("hello, world!\n");
|
|
printf("a: %d\n", a);
|
|
}
|
|
|
|
int hello = 35;
|