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