include<stdio.h>
void move()
{
printf("this fuction can move material\n");
}
void build()
{
printf("this fuction can build a building\n");
}
void paint()
{
printf("this fuction can paint close\n");
}
int main()
{
move();
build();
paint();
return 0;
}
最简单的函数调用