HUANGWANG'S BLOG

Hello,World!

这是我在Hexo上的第一篇文章,经过一天的折腾,终于在自己的VPS上搭建好了这个博客。开始尽情地享受写博客,折腾技术带来的乐趣。

Hello,World!

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