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” »
Category: rexx
hello world, object oriented programming, objects, oorexx, programming, rexx
downloading, linux, os/2, programming, rexx, scripting, wget
Recent news, I had to reinstall SUSE linux on my 64-bit PC. So this means I have to get my tools that I use often, including REXX scripts. Previously I used a REXX script for reading a text file and downloading a series of files based on a filter, such as files x001.jpg to x030.jpg. … Read More “Batch downloading with REXX and WGET” »
