Content deleted Content added
No edit summary |
Reverted 1 edit by 189.83.62.237 (talk) to last revision by Walter Görlitz. (TW) |
||
Line 1:
'''Work Flow Language''', or '''WFL''' ("''wiffle''") is the [[process control]] language for the [[Burroughs large systems]], including the [[Unisys]] [[Burroughs MCP|ClearPath/MCP]] series, and their [[operating system]] [[Burroughs MCP|Master Control Program]]. Developed soon after the B5000 in 1961, WFL is the ClearPath equivalent of the [[Job Control Language]] (JCL) on [[IBM]] mainframes and the [[shell script]]s of [[Unix-like]] operating systems. Unlike JCL, WFL is a high-level structured language complete with [[subroutine]]s (procedures and functions) with [[Parameter (computer science)|arguments]] and high-level program [[control flow]] instructions. WFL programs are [[compiler|compiled]] to binary executables like any other MCP subject.
WFL has a high-level [[ALGOL]]-like readable syntax. It has none of the low-level assembler-like commands of JCL like <code>//SYSIN DD</code>, etc. in order to connect hardware devices and open files for programs. All WFL constructs deal with the high-level abstractions of tasks and files. Parameters are also real HLL parameters, not the $1, $2... style position parameters of shell scripts.
WFL also has an instruction block command which is used to give operators instructions needed to run the current job. These instructions are displayed using the 'IB' operator command.
WFL was a compiled language on the medium systems. Because some OS interfaces may change from release to release, Medium Systems WFL code included a copy of the source in the object file. Upon executing a WFL job it would check to determine if the object was compatible with the OS version. If not it would trigger a recompile of the object using the source embedded in the object code.
Line 7 ⟶ 11:
==See also==
*[[Burroughs large systems]]
==Sources==
|