#include <stdio.h>
// 创建函数
void myFunction() {
printf("本段代码刚被执行!\n");
}
int main() {
myFunction(); // 调用函数
return 0;