Syntax helloAPP [count [custom string]]
Category: objects
Ok… this is a “Hello World” program in C++ using objects. It illustrates a number of aspects of object oriented programming in C++ allowing you to get a quickstart into C++ programming. First there is the #include directives which tells C++ that the program uses two libraries, iostream and string (actually they specify the header … Read More “Hello World C++ with Objects” »
Ok, as my previous post showed how to write a routine oriented hello world program in gforth, I now explain a hello world program using objects in object oriented rexx (ooRexx). #!/usr/bin/rexx /* Object Oriented Hello World in REXX */ myobject = .hello~new myobject~print exit ::class hello ::method init expose hellostring hellostring = “Hello World” … Read More “Hello World ooREXX” »
