JAVA
·
发表于 5年以前
·
阅读量:899
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
System.Console.Write("Hello, World!");
}
}
}