Google
 
   
Login
Username:

Password:


Lost Password?

Register now!
Search
Main Menu
top books
Polls
What do you think about php-deluxe.net?
Excellent!
Cool
Hmm..not bad
What the hell is this?
encyclopedia
recommendation
compare webbrowser
Freenet DSL
Who's Online
6 user(s) are online (5 user(s) are browsing encyclopedia)

Members: 0
Guests: 6

more...
browser tip
Unix Befehle
manual of unix befehle
recommendation!
Sponsored
partner

CLIST

CLIST (Command List) is a procedural programming language for MVS/Time Sharing Option systems.

In its basic form a CLIST is just a simple list of commands to be executed in strict sequence (like a DOS batch (*.bat) file).

CLIST also can read/write MVS files, read/write to a TSO terminal and has normal IF/ELSE DO/END block constructs. It can read parameters from the caller and there is also a function to hold global variables and pass them from one CLIST to another. A CLIST can also call an MVS application program (written in COBOL or PL/1, for example).

A CLIST can also be run as a batch program (by running JCL which executes the TSO control program (IKJEFT01)). TSO menus using ISPF dialog services can be written in CLIST. You should also compare the function of CLIST with that provided by REXX.

Example program:

PROC 0 WRITE HELLO WORLD!