Next: COMIS at a glance
Up: Introduction
Previous: Introduction
Subsections
COMIS (a COMpilation and Interpretation System)
is a Fortran interpreter.
With COMIS you can interactively define, edit and execute any
Fortran-like routines (e.g., consisting of one simple
output statement), without recompiling and relinking.
A small user interface system is part of COMIS, and an interface
with the local editor is also provided.
COMIS is one of the key components of the PAW system and is
currently implemented on IBM VM/CMS, VAX/VMS, Apollo (Aegis and Unix),
IBM RS/6000, DEC Station 3100, Silicon Graphics, Sun, HP/UX and MSDOS.
It can also be used as an interactive compiler and
interpreter from inside a Fortran 77 program.
If the source of your program to be compiled is in a file
IFORT.FOR then you should use the following code:
PROGRAM MAIN
CALL HLIMIT(10000)
CALL CSINIT(2000)
1 CALL CSPAUS('IFORT')
GO TO 1
END
$ Fortran IFORT
$ link IFORT,'LIB$'
$ run IFORT
You can run the simple example below by typing the lines
below in response to the COMIS prompt ``CS>'':
DO 1 X=3.14, -3.14,-0.7
PRINT *,X,SIN(X)
1 CONTINUE
END
or the same code in short notation as:
DO X=3.14, -3.14,-0.7 PRINT *,X,SIN(X) OD #
The sequence STOP END will cause exit from COMIS.
Next: COMIS at a glance
Up: Introduction
Previous: Introduction
Back to
CERN
| IT
| ASD
| CERN Program Library Home
MG
(last mod. 1998-08-19)