Object orientation in QB64

by thinman1337 (no login)

I think QB64 should support object orientation.

For example,

10 PRINT "Jello, Whirled!"
20 GOTO 10

is difficult to understand because of the lack of objects and the goto statement,

whereas

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

is intuitively obvious to even beginning programmers.

Posted on Aug 31, 2012, 8:47 PM

Respond to this message   

Return to Index


Response TitleAuthor and Date
are you joking? on Sep 3