hello, world

世界上最标准的hello world

出于1972年贝尔实验室成员Brian Kernighan撰写的内部技术文件《Introduction to the Language B》之中。这句话全程无大写,先是一个hello和一个逗点,再加上一个空格和world  没有句号。因为第一个程序大部分都是hello, world 因此我也打算将它作为本博的第一篇文章。

Python 2.x 版本:

print 'hello, world'

Py3.x 版本:

print ('hello, world')

 Python3.x 版本将print变成了函数,故加 ()

C语言版本:

#include<stdio.h>

int main()
{
    printf("hello, world");
    return 0;
}

 

hello, world

你可能感兴趣的:(EL)