Hello, world!

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

 

program helloworld;

begin
  writeln("Hello, world!");
end.

 

#include <stdio.h>

int main(int argc, char *argv[])
{
    printf("Hello, world!");
    return 0;
}

 

print 'Hello, world!'

登录 *


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