Hello World in Rexx

Published on 19 April 2018 (Updated: 15 May 2023)

Welcome to the Hello World in Rexx page! Here, you'll find the source code for this program as well as a description of how the program works.

Current Solution

say "Hello, World!"

Hello World in Rexx was written by:

This article was written by:

If you see anything you'd like to change or update, please consider contributing.

How to Implement the Solution

To print 'Hello World!' in Rexx, we need to take note of two points:

So, let's get to the point and see how to implement the solution:

/* Print 'Hello-World!' sample program in REXX */
SAY 'Hello World!'

And that's it! It is a very simple one-liner program with a few specifications. The comments tell us what the program does and the intruction 'say' is used to print the program 'Hello World!'.

SAY is a basic command to print output on the same lines as PRINT from Python. It remains constant regardless of the version.

How to Run the Solution

In order to run this program, you can install REXX through online sources and run it. Alternatively, you can directly run it on online interpreters.