Create HelloWorld.cpp

This commit is contained in:
m1ng 2023-12-14 10:59:28 +08:00 committed by GitHub
parent 367565b051
commit ac8678f08c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,8 @@
#include<stdio.h>
#include<stdlib.h>
int main(void)
{
printf("Hello World!");
return 0;
}