Snowball (programming language)
It is proposed that this article be deleted because of the following concern:
If you can address this concern by improving, copyediting, sourcing, renaming, or merging the page, please edit this page and do so. You may remove this message if you improve the article or otherwise object to deletion for any reason. Although not required, you are encouraged to explain why you object to the deletion, either in your edit summary or on the talk page. If this template is removed, do not replace it. This message has remained in place for seven days, so the article may be deleted without further notice. Find sources: "Snowball" programming language – news · newspapers · books · scholar · JSTOR Nominator: Please consider notifying the author/project: {{subst:proposed deletion notify|Snowball (programming language)|concern=This appears to be a personal project that is not in general use and does not meet GNG for software. Google searches turn up primary sources, as are all the references here.}} ~~~~ Timestamp: 20160227161052 16:10, 27 February 2016 (UTC) Administrators: delete |
Snowball is a small string processing programming language designed for creating stemming algorithms for use in information retrieval.[1]
The Snowball compiler translates a Snowball script (a .sbl file) into either a thread-safe ANSI C program or a Java program. For ANSI C, each Snowball script produces a program file and corresponding header file (with .c and .h extensions).[2] The basic datatypes handled by Snowball are strings of characters, signed integers, and boolean truth values, or more simply strings, integers and booleans. Snowball's characters are either 8-bit wide, or 16-bit, depending on the mode of use. In particular, both 8-bit ASCII and 16-bit Unicode are supported. Like the SNOBOL programming language, the flow of control in Snowball is arranged by the implicit use of signals (each statement returns a true or false value), rather than the explicit use of constructs such as if, then, and break found in C and many other programming languages.[3]
The name Snowball was chosen as a tribute to the SNOBOL programming language, with which it shares the concept of string patterns delivering signals that are used to control the flow of the program. The creator of Snowball, Dr. Martin Porter, "toyed with the idea of calling it 'strippergram' ", because it "effectively provides a 'suffix STRIPPER GRAMmar' ".[1]
References
This article relies largely or entirely on a single source. (September 2014) |
- ^ a b "Snowball", Martin Porter, web page. Retrieved 2 September 2014.
- ^ "Snowball: Quick introduction", Martin Porter, web page. Retrieved 2 September 2014.
- ^ "Snowball Manual", Martin Porter, web page. Retrieved 2 September 2014.