Snostorm
Snostorm (Snostorm3) is a version of the SNOBOL4 language with structured programming constructs added. It compensates for the near absence of structured programming constructs in SNOBOL4 by providing IF, ELSEIF, ELSE, LOOP, CASE, and PROCEDURE statements, among others. It was originally designed and implemented by Fred G. Swartz as a preprocessor for SPITBOL running under the Michigan Terminal System (MTS) at the University of Michigan Computing Center during the 1970s.[1]
Features added
Added features include logical operators, control structures including procedures, initialization blocks, enhanced comments, and listing control.[1]
The grammar includes these added constructs:[1]
- Logical operators
- AND, OR, and NOT logical operators.
- Control structures
- IF, ELSEIF, ELSE, and ENDIF statements.
- LOOP, LOOP WHILE, LOOP UNTIL, LOOP FOR, EXITLOOP, NEXTLOOP, ENDLOOP, and ENDLOOP REPEAT statements.
- DOCASE, CASE, ELSECASE, and ENDCASE statements.
- PROCEDURE (PROC), EXITPROCEDURE (EDITPROC), and ENDPROCEDURE (ENDPROC) statements.
- Initialization
- INITIAL and ENDINITIAL statements.
- Enhanced comments
- Comments starting with an asterisk (*) in columns other than column 1.
- Blank lines treated as comments.
- Listing control
- EJECT, TITLE, SUBTITLE, SPACE, LIST ON, LIST OFF, LIST PUSHON, LIST PUSHOFF, and LIST POP statements.
In addition MTS Snostorm provided options for prettyprinting and for debugging with the Spitbol compiler.
The syntax of Snostorm is largely insensitive to spaces and newlines, but not entirely so because of its dependence upon SNOBOL4 for execution.
Example
A SNOBOL4 program as given in The SNOBOL4 Programming Language by Griswold, Poage, and Polonsky[2] followed by the same program rewritten in Snostorm.[1]
- The original SNOBOL4 program.
...
READ OUTPUT = INPUT :F(DISPLAY)
TEXT = OUTPUT
NEXT TEXT CHAR = :F(READ)
COUNT<CH> = COUNT<CH> + 1 :(NEXT)
DISPLAY OUTPUT =
LOOP LETTERS CHAR = :F(END)
OUTPUT = NE(COUNT<CH>) CH ' OCCURS ' COUNT<CH> ' TIMES'
+ :(LOOP)
END
- The same program, rewritten in Snostorm.
...
LOOP WHILE TEXT = INPUT
OUTPUT = TEXT
LOOP WHILE TEXT CHAR =
COUNT<CH> = COUNT<CH> + 1
ENDLOOP
ENDLOOP
OUTPUT =
LOOP WHILE LETTERS CHAR =
IF NE(COUNT<CH>)
OUTPUT = CH ’ OCCURS ’ COUNT<CH> ’ TIMES’
ENDIF
ENDLOOP
END
Use
In addition to its use at the eight to fifteen sites that ran the Michigan Terminal System,[1] a Snostorm3 compiler existed at University College London (UCL) from 1982 to 1984 and worked by compiling Snostorm3 into SNOBOL4, which could then be executed using the SNOBOL4 interpreter or by using a SPITBOL compiler to create an executable.[citation needed]
References
- ^ a b c d e "SNOSTORM", MTS Volume 9: SNOBOL4 in MTS, Computing Center, University of Michigan, June 1979, pages 99-120. Retrieved 1 September 2014.
- ^ Griswold, Ralph E., J. F. Poage, and I. P. Polonsky (1968). The SNOBOL4 Programming Language. Englewood Cliffs, NJ: Prentice Hall, ISBN 0-13-815373-6.
External links
- Fred Swartz's description of Snostorm, 2010.
- "The SNOSTORM Returneth", source files for a modern re-implementation.
- MTS source and object code for the Snostorm preprocessor, component 678 in MTS Distribution 6.0, April 1988, available from Bitsavers and the U-M's Deep Blue digital archive.
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.