Questions tagged [oorexx]

Questions relating to Open Object Rexx (ooRexx), an Open Source project managed by Rexx Language Association (RexxLA) providing a free implementation of Object Rexx.

Open Object Rexx (ooRexx) is an Open Source project managed by Rexx Language Association (RexxLA) providing a free implementation of Object Rexx. ooRexx is distributed under Common Public License (CPL) v1.0.

Open Object Rexx includes features typical of an object-oriented language, such as subclassing, polymorphism, and data encapsulation. It is an extension of the classic Rexx language, which has been expanded to include classes (a base set of classes is supplied), objects, and methods. These extensions do not replace classic Rexx functions or preclude the development or running of classic Rexx programs.

8 questions
1
vote
3 answers

Would a Python dictionary be the equivalent data structure to a Rexx compound variable?

I'm working on rewriting a lengthy Rexx script into a Python program and I am trying to figure out the best way to emulate the functionality of a Rexx compound variable. Would a dictionary be the best bet? Obviously, a dictionary will behave…
kbarnum
  • 13
  • 4
0
votes
0 answers

How can I solve pthread & posix error when building C++ for Android with CMake

I have a big problem with a project of mine. In a view words: I want to port the programming language ooRexx to Android. ooRexx is written mostly in C++ I have the NDK installed and so far everything works fine. First of all I run CMake with this…
tjk
  • 13
  • 3
0
votes
1 answer

Use Reginald interpreter in ooRexx

I've fallen into ooRexx for some office improvement stuff and I need to move some files around in windows, and in my research I found the Reginald interpreter which is exactly what I need. Is it possible to call to it from, or load that…
0
votes
1 answer

Stop Rexx Do Loop from Exiting

For some reason my Rexx loop breaks and I don't know why. I'm trying to search a phone number database by ICCID (The identification number for sim cards) and pull the phone number. Here's the loop I have, a little simplified: (t) is the tab hex…
0
votes
1 answer

BPXWUNIX: not found error when trying to run Regina Rexx script

I have made a logfile reader in Java that is supposed to alert me via Xymon when more than 1 redis servers is down simultaneously. Now I am supposed to feed the output to Xymon via a Rexx script and I tried to do that by calling the command to run…
Misrr
  • 1
0
votes
1 answer

How do I pass objects to functions in ooRexx?

I'm a long-time mainframe Rexx programmer who is trying out objects in ooRexx. The results are surprising. For example, here is a program: #!/usr/bin/rexx a = .number~new(3.14) say "a =" a say "a~val =" a~val call say_number a exit…
Tony
  • 1,221
  • 2
  • 12
  • 25
0
votes
1 answer

Open Object Rexx - ooREXX

ooREXX is a scripting language produced by IBM for OS/2. It is also available for various operating systems: Linux, Solaris, Windows. I just want know what are the benfits of ooREX compared to other scritping langunages such as Shell or windows…
N Randhawa
  • 8,773
  • 3
  • 43
  • 47
-2
votes
1 answer

How do I convert this Java code to Rexx inorder to generate Luhn compatible credit cards?

public string GenerateCardTokenOptimised() { int[] checkArray = new int[15]; var cardNum = new int[16]; for (int d = 14; d >= 0; d--) { cardNum[d] =…
Fnechz
  • 151
  • 8