ronin_wiki

main page, file list (41), source, commit RSS feed, report abuse, stats, random article

Java

Java is a horrible and bloated programming language that many computer science students are forced to learn. It has forced Object Oriented Programming, it is pretty much useless without using a big IDE like intellij (which is 2 gb and uses almost 2 gb of ram with it being slow to open up even on a gaming computer), syntax is bad and even making a hello world java program is complex, etc. Java is mainly used in enterprises and in android development. Java programs have to run in Java's Virtual Machine which adds overhead and programs are compiled to byte code. Java programs are advertised as being portable but well written c code can be portable. C programs like runit follow posix guidelines and can run on GNU/Linux, BSD, and Darwin.

Example of Java hello world

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

Vs c hello world

#include <stdio.h>

int main()
{
    puts("Hello World");

    return 0;
}

Vs python hello world

print("Hello World")

No Rights Reserved. Powered by nothing. All content available under CC0 1.0 (public domain). Send comments and corrections to ronin at basedronin0@proton.me.