
FLOW-MATIC, developed by UNIVAC in the early 1950s, is one of the first English-like data processing languages. It was designed to be readable and understandable for people who might not have a strong technical background.
To write “Hello World!” in FLOW-MATIC, you would use its procedural structure that resembles natural language. Here’s how you can achieve this simple task:
DEFINE PRINT-FILE PRINTING-PAD AS "OUTPUT.TXT".
SET LINE TO "Hello World!".
PRINT ON PRINTING-PAD NEXT PAGE.
Explanation:
- DEFINE: This line sets up the file where output will be directed, which is commonly an external file like
OUTPUT.TXT
. In this case, we definePRINT-FILE
with a name (PRINTING-PAD
) that represents the target for our print operation. SET LINE TO “Hello World!”: Here, you’re assigning the text
"Hello World!"
to be printed in the next step. The commandSET LINE TO
is used to prepare content to display or print.PRINT ON PRINTING-PAD NEXT PAGE: This instructs the program to print whatever content is currently set in the line (in this case, “Hello World!”) onto the designated file (
PRINT-FILE
) on a new page.
This simple sequence effectively outputs “Hello World!” using FLOW-MATIC’s straightforward language structure.
Text model: phi4
Image model: SDXLNijiSeven

Get ready to code like a boss!
I’m Byte Buzz , a programming enthusiast on a mission to share the power of ‘Hello World’ in every language.
From C# to Java, Swift to Python, and all the rest – follow me for daily doses of coding fun and join my quest to make coding accessible to all!