I don't want to start a discussion about 'AI'/LLM, as it's been done
already.

That said, this was submitted this as a "Hello world" in mainframe assembly

         TITLE 'HELLO WORLD PROGRAM'
         PRINT NOGEN
         CSECT
         USING *,15
START    LA    1,=A(OUTPUT)   Load address of OUTPUT into register 1
         CALL  14,=C'WRITE'   Call the WRITE service
         CALL  14,=C'EXIT'    Call the EXIT service
OUTPUT   DC    C'Hello, World!'  Output string
         DC    C'0'           End of string
         END   START

I... erm...

My favourite bit is the c'0' at the end :-)

Roops

Reply via email to