Top Qs
Timeline
Chat
Perspective

MIIS (programming language)

From Wikipedia, the free encyclopedia

Remove ads

MIIS (Meditech Integrated Information System) is a proprietary programming language, integrated database, and operating system environment derived from MUMPS (Massachusetts General Hospital Utility Multi-Programming System).[1] It was created by A. Neil Pappalardo and Curt W. Marble at the Massachusetts General Hospital's (MGH) Laboratory of Computer Science between 1964 and 1968, originally running on Digital Equipment Corporation (DEC) PDP-series minicomputers.

Quick facts Paradigm, Developer ...
Remove ads

History

The evolution of the original MGH MUMPS language took two major directions: MUMPS proper and MIIS. While MUMPS proper was eventually standardized by American National Standards Institute (as ANSI X11.1) and ISO, MIIS was developed as a distinct, proprietary system. It became the core technology for Meditech, the healthcare information systems company Pappalardo co-founded in 1969.

Differences from MUMPS

Whereas MUMPS runs as an interpreter under various operating systems, MIIS booted on DEC PDP-11 systems as the operating system with no external file system or drivers.

As an example of the differences between MUMPS and MIIS languages, the value of a logical expression in MUMPS may be false = zero or true = non-zero, canonically, one. In MIIS, the value false is "nil" (the empty string) and the value true is a string consisting of the ASCII delete character (code 127 decimal), and any string of length greater than zero is evaluated as logically true. In MUMPS, numbers are internally represented as integers, floating point, or exponential numbers. MIIS uses only strings and performs only basic integer arithmetic and comparisons.

There is also a philosophical difference between the dialects. MIIS took the approach that code should continue execution regardless of undefined variables, whereas MUMPS is designed to throw an <UNDEF> error. When encountering an undefined variable, MIIS treats it as nil.

Several commands differ between the two as well as some syntax. MIIS uses @ to dereference "namespaces". MUMPS uses @ as the "indirection" operator.

Remove ads

Language constructs

"Hello, world!" in MIIS

Commands may be executed interactively in the programming environment or a program. A program may be typed in. A line not containing a tab character is executed immediately. A line containing a tab is inserted into the program buffer after the current line and the line pointer is advanced. The tab must be either the first character after the line label or the very first character of the line, very similar to MUMPS.

E  ;Empty current program buffer direct command.
HELLO   ; Program begins with a label which is the program's default name.
        W "Hello, world!" ;Outputs literal string to current I/O stream.
        Q  ;Terminate program

;The following are all direct commands (no tab character):
F  ; "File" (save) the program.
D HELLO ;Execute program in buffer starting from tag HELLO.
Hello, world!
D @HELLO ;Load program HELLO into buffer and begin execution from the top.
Hello, world!
H  ;Exit the command interpreter, i.e., log out.

Usage

In the 1980s, Brigham and Women's Hospital in Massachusetts used MIIS to program their Data General mainframe for its Brigham Integrated Computing System (BICS).[2]

In 1986, the Symposium on Computer Application in Medical Care (SCAMC) reported that Vancouver General Hospital also had an Integrated Cardiology Patient Management System written in MIIS.[3]

The MIIS language has been used in programming library systems as well as health industry systems. The OCLC's local library system, LS/2000, is one example.[4][1] It has also been used to create financial systems for insurance brokers, as seen in Ireland and the UK in the late 1970s.[citation needed]

Remove ads

References

Loading related searches...

Wikiwand - on

Seamless Wikipedia browsing. On steroids.

Remove ads