补上hello.world

This commit is contained in:
root 2024-02-18 14:26:41 +08:00
parent 6eda73bde9
commit de0ce1c9f6
3 changed files with 10 additions and 0 deletions

7
c/code/hello.world.c Normal file
View File

@ -0,0 +1,7 @@
#include<stdio.h>
int main(void)
{
printf("hello,world!");
return 0;
}

View File

@ -0,0 +1 @@
print("hello,world!")

2
shell/code/hello_world.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/bash
echo "Hello,world !"