ITS – programming

:cwd hello
:lf

Looks like these are the options.

KA:HELLO;
  0   -READ- -THIS-   0  +61    5/7/2018 04:40:52 (4/4/2024) -??-
  0   AR     XFILES   1 +276    4/4/2024 12:32:31 (4/4/2024) -??-
  2   HELLO  (DUMP)   0 +110    2/22/2021 11:19:15 (4/4/2024) -??-
  2   HELLO  C        0  +39    2/22/2021 11:19:15 (4/4/2024) -??-
  0   HELLO  CLU      0 +108    2/22/2021 11:19:15 (4/4/2024) -??-
  0   HELLO  FAI      0 +153    2/22/2021 11:19:15 (4/4/2024) -??-
  0   HELLO  FOR      0  +83    2/22/2021 11:19:15 (4/4/2024) -??-
  3   HELLO  LISP     0  +46    2/22/2021 11:19:15 (4/4/2024) -??-
  3   HELLO  LOADER   0  +10    2/22/2021 11:19:15 (4/4/2024) -??-
  3   HELLO  MAC      0 +124    2/22/2021 11:19:15 (4/4/2024) -??-


:print hello for

C     Fortran hello world.
C
C Compile the source code with the F40 compiler:
C *:dec sys:f40
C *hello=hello.for
C
C Then load and link the relcatable file:
C *:dec sys:loader
C *hello/g
C
C Finally start DECUUO to dump an executable:
C *45$g
C Command: dump
C *:pdump ts hello

C       Unit 5 is the user teletype.
        WRITE(5,10)
10      FORMAT(12H HELLO WORLD)
        STOP
        END
*