helloWold 这个耳熟能详的试例从《The C Programming Language》中出现 到现在基本每个接触程序的人所敲出的第一个程序,基本上就算没学过编程也听说过这个单词.

从我最熟悉的Java开始:

1
2
3
4
5
6
public class helloWorld
{
public static void main(String[] args) {
System.out.println( "Hello, World!" );
}
}

然后是大名鼎鼎的 C 系列编程语言的

从老大C开始

1
2
3
4
5
6
#include <stdio.h>
int main(void)
{
printf("Hello, World!");
return 0;
}

然后老二C++

1
2
3
4
5
6
#include <iostream>
int main()
{
std::cout << "Hello,World!" << std::endl;
return 0;
}

然后老三C#

1
2
3
4
5
6
7
8
9
10
namespace helloWorld
{
class Program
{
static void Main(string[] args)
{
System.Console.Write("Hello, World!");
}
}
}

然后是和 Java 其实没多大关系的 JavaScript

1
2
3
<script>
alert ("Hello, World!");
</script>

或者

1
alert ("Hello, World!");

以上就是我所会的编程语言的helloWorld的写法了

作为我博客的第一篇文章 也是我所写的第一篇文章我有些语无伦次,不知道写什么不过我相信,万事开头难,从今往后会越来越好的