C++
#include <bits/stdc++.h>
using namespace std;
int main() {
cout << "Hello World" << endl;
return 0;
}
Python
print("Hello World");
Java
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello world");
}
}
标签:Java,hello,public,world,main,Hello
From: https://www.cnblogs.com/ckb2008/p/hello-world.html