#include <stdio.h>
// 函数声明
void myFunction();
// 主函数
int main() {
myFunction(); // 调用函数
return 0;
}
// 函数定义
void myFunction() {
printf("本段代码刚被执行!");