//打印 hello world
//标准的输入输出
#include <stdio.h>
int main(int argc, const char * argv[]) {
    //printf 函数
    printf("hello world!\n");
    return 0;
}