This is my first post and hopefully more goes on this page later. This is currently serving as a placeholder for the weekly project post I will try to do at the end of every saturday. To fill this article with relevance, I will be compiling a list of the “Hello World Program” in different programming languages.

Java

public class HelloWorld {
    public static void main(String[] args){
        System.out.println("hello, world");
    }
}

Python

print("hello, world")

C

main() {
    printf("hello, world\n");
}

C++

int main() {
    std::cout << "Hello, world";
    return 0
}