1
0
mirror of https://github.com/PDP-10/its.git synced 2026-03-01 09:40:56 +00:00
Files
PDP-10.its/src/hello/hello.mud
Lars Brinkhoff dfb09da1e3 Update Muddle hello world example.
Use MDL 55.  Remove reference to LARS directory.  Move call to SAVE-IT
from the source file to the Muddle session.
2023-02-24 07:02:35 +01:00

13 lines
322 B
Plaintext

;"Hello world example for Muddle. Load this file with FLOAD, and type"
;"<SAVE-IT>$ to make a HELLO SAVE file which can later be loaded into"
;"Muddle with RESTORE."
<DEFINE HELLO ()
<PRINC "Hello, muddled world!">
<TERPRI>
<QUIT>>
<DEFINE SAVE-IT ()
<COND (<=? <SAVE "HELLO SAVE"> "SAVED"> <QUIT>)>
<HELLO>>