Hello, world!

Gandroider posted @ 2011年11月19日 23:28 in 程序 with tags python c++ helloworld pascal , 942 阅读

 

1
2
3
4
5
program helloworld;
 
begin
  writeln("Hello, world!");
end.

 

1
2
3
4
5
6
7
#include <stdio.h>
 
int main(int argc, char *argv[])
{
    printf("Hello, world!");
    return 0;
}

 

1
print 'Hello, world!'

登录 *


loading captcha image...
(输入验证码)
or Ctrl+Enter