mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-12-22 12:30:01 +00:00
12 lines
141 B
Plaintext
12 lines
141 B
Plaintext
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
|
|
//#link "serialout.c"
|
|
|
|
int main() {
|
|
int x = 2024;
|
|
printf("Hello World! %d\n", x);
|
|
return 0;
|
|
}
|