mirror of
https://github.com/PDP-10/its.git
synced 2026-03-01 09:40:56 +00:00
Use MDL 55. Remove reference to LARS directory. Move call to SAVE-IT from the source file to the Muddle session.
13 lines
322 B
Plaintext
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>>
|