This commit is contained in:
chenyf 2024-02-24 09:29:59 +08:00
commit af2d954010
3 changed files with 8 additions and 0 deletions

BIN
fock/fock.bin Executable file

Binary file not shown.

5
fock/fock.c Normal file
View File

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

3
fock/run.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
gcc -o fock.bin fock.c
./fock.bin