Samples updates

This commit is contained in:
Wayne Parham
2021-06-07 00:42:13 -05:00
parent 88ee45e9ef
commit a3fce656b7
2 changed files with 13 additions and 18 deletions

8
samples/helloworld.c Normal file
View File

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