24种编程语言的Hello World程序(7)


Built Mar 13 2013 11:29:21 
 
Perl may be copied only under the terms of either the Artistic License or the 
GNU General Public License, which may be found in the Perl 5 source kit. 
 
Complete documentation for Perl, including FAQ lists, should be found on 
this system using "man perl" or "perldoc perl".  If you have access to the 
Internet, point your browser at http://www.perl.org/, the Perl Home Page.

代码:

复制代码 代码如下:

#!C:\Perl\bin                    #Windows平台下 
#!/usr/bin/env perl              #Linux环境下 
print "Hello,World!\n";          #print("Hello,World")也可  

输出结果 

复制代码 代码如下:

D:\HelloWorld>perl HelloWorld.pl #类似于python file.py 
Hello,World! 

说明:
复制代码 代码如下:

#Perl 5.10及以上的版本,可以用 
use 5.010; 
say "Hello,World!"; 

12. HTML
环境: HTML 或 HTML 5.0
代码

复制代码 代码如下:

<!DOCTYPE html> 
<html> 
<body> 
<h1>This is the first program!</h1> 
<p>Hello,World!</p> 
</body> 
</html>

说明:

HTML4.0无论用那种浏览器,HTML5.0有些浏览器只支持部分功能,打可以打开。可用不同的编辑器编辑.

13. VB

环境:

复制代码 代码如下:

VBC version 8.0.5
D:\Learn\C>vbc -v 
Microsoft (R) Visual Basic Compiler version 8.0.50727.5483 
for Microsoft (R) .NET Framework version 2.0.50727.5485 
Copyright (c) Microsoft Corporation.  All rights reserved. 
 
vbc : Command line warning BC2007 : unrecognized option 'v'; ignored 
vbc : Command line error BC2008 : no input sources specified 

代码:
复制代码 代码如下:

'FileName: HelloWorld.rb  rb作为VB源文件的后缀 
Module Hello   
  Sub Main()               '程序人口函数 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/1648.html