Java and Open Office

Status
Not open for further replies.

kuwisdelu

Revolutionize the World
Super Member
Registered
Joined
Sep 18, 2007
Messages
38,197
Reaction score
4,544
Location
The End of the World
Java sucks anyway.

The "write once, run anywhere" ideal was never fully realized. It's slow and inefficient.

And it uniformly results in terrible, ugly GUIs that don't feel at home on any platform.

/rant
 

Charles Farley

Bango Skank
Super Member
Registered
Joined
Jul 5, 2010
Messages
4,250
Reaction score
1,139
Location
Ninth Circle
<body><rant>

Java sucks anyway.

The "write once, run anywhere" ideal was never fully realized. It's slow and inefficient.

And it uniformly results in terrible, ugly GUIs that don't feel at home on any platform.</rant>
</body>

FIFY
 

kuwisdelu

Revolutionize the World
Super Member
Registered
Joined
Sep 18, 2007
Messages
38,197
Reaction score
4,544
Location
The End of the World

Code:
public class JavaRant {

    public static void initRant() {
        System.out.println("Java sucks anyway.")
    }

    public static void continueRant() {
        System.out.println("The "write once, run anywhere" ideal was never fully realized. It's slow and inefficient.")
    }

    public static void endRant() {
        System.out.println("And it uniformly results in terrible, ugly GUIs that don't feel at home on any platform.")
    }

    public static void main(String[] args) {
        initRant();
        continueRant();
        endRant();
        System.exit(0);
    }
}

How's that?
 

Charles Farley

Bango Skank
Super Member
Registered
Joined
Jul 5, 2010
Messages
4,250
Reaction score
1,139
Location
Ninth Circle
Code:
public class JavaRant {

    public static void initRant() {
        System.out.println("Java sucks anyway.")
    }

    public static void continueRant() {
        System.out.println("The "write once, run anywhere" ideal was never fully realized. It's slow and inefficient.")
    }

    public static void endRant() {
        System.out.println("And it uniformly results in terrible, ugly GUIs that don't feel at home on any platform.")
    }

    public static void main(String[] args) {
        initRant();
        continueRant();
        endRant();
        System.exit(0);
    }
}

How's that?

But does it run on windows?
 
Status
Not open for further replies.