Some interesting facts
Java code compared to other languages
Java
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}C++
#include <iostream>
int main()
{
std::cout << "Hello, World!";
return 0;
}C
Last updated