📅  最后修改于: 2022-03-11 14:59:30.154000             🧑  作者: Mango
#include
#include // notice this! you need it!
int main(){
printf("Hello,");
sleep(5); // format is sleep(x); where x is # of seconds.
printf("World");
return 0;
}