A Collection of Code Snippets in as Many Programming Languages as Possible
This project is maintained by TheRenegadeCoder
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.
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.
To print 'Hello World!' in Rexx, we need to take note of two points:
/* */
.SAY
command before the desired output or valueSo, 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.
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.