In
computer language
A computer language is a formal language used to communicate with a computer. Types of computer languages include:
* Software construction#Construction languages, Construction language – all forms of communication by which a human can Comput ...
design, stropping is a method of explicitly marking letter sequences as having a special property, such as being a
keyword, or a certain type of variable or storage location, and thus inhabiting a different namespace from ordinary names ("identifiers"), in order to avoid clashes. Stropping is not used in most modern languages – instead, keywords are
reserved word
In a programming language, a reserved word (sometimes known as a reserved identifier) is a word that cannot be used by a programmer as an identifier, such as the name of a variable, function, or label – it is "reserved from use". In brief, an '' ...
s and cannot be used as identifiers. Stropping allows the same letter sequence to be used both as a keyword and as an
identifier
An identifier is a name that identifies (that is, labels the identity of) either a unique object or a unique ''class'' of objects, where the "object" or class may be an idea, person, physical countable object (or class thereof), or physical mass ...
, and simplifies
parsing
Parsing, syntax analysis, or syntactic analysis is a process of analyzing a String (computer science), string of Symbol (formal), symbols, either in natural language, computer languages or data structures, conforming to the rules of a formal gramm ...
in that case – for example allowing a variable named
if
without clashing with the keyword if.
Stropping is primarily associated with
ALGOL
ALGOL (; short for "Algorithmic Language") is a family of imperative computer programming languages originally developed in 1958. ALGOL heavily influenced many other languages and was the standard method for algorithm description used by the ...
and related languages in the 1960s. Though it finds some
modern use, it is easily confused with other
similar techniques that are superficially similar.
History
The method of stropping and the term "stropping" arose in the development of
ALGOL
ALGOL (; short for "Algorithmic Language") is a family of imperative computer programming languages originally developed in 1958. ALGOL heavily influenced many other languages and was the standard method for algorithm description used by the ...
in the 1960s, where it was used to represent typographical distinctions (boldface and underline) found in the publication language which could not directly be represented in the hardware language – a typewriter could have bold characters, but in encoding in punch cards, there were no bold characters. The term "stropping" arose in
ALGOL 60
ALGOL 60 (short for ''Algorithmic Language 1960'') is a member of the ALGOL family of computer programming languages. It followed on from ALGOL 58 which had introduced code blocks and the begin and end pairs for delimiting them, representing a ...
, from "
apostrophe
The apostrophe (, ) is a punctuation mark, and sometimes a diacritical mark, in languages that use the Latin alphabet and some other alphabets. In English, the apostrophe is used for two basic purposes:
* The marking of the omission of one o ...
", as some implementations of ALGOL 60 used apostrophes around text to indicate boldface,
such as
'if'
to represent the keyword if. Stropping is also important in
ALGOL 68
ALGOL 68 (short for ''Algorithmic Language 1968'') is an imperative programming language member of the ALGOL family that was conceived as a successor to the ALGOL 60 language, designed with the goal of a much wider scope of application and ...
, where multiple methods of stropping, known as "stropping regimes", are used; the original matched apostrophes from ALGOL 60 was not widely used, with a leading period or uppercase being more common,
as in
.IF
or
IF
and the term "stropping" was applied to all of these.
Syntaxes
A range of different syntaxes for stropping have been used:
*
ALGOL 60
ALGOL 60 (short for ''Algorithmic Language 1960'') is a member of the ALGOL family of computer programming languages. It followed on from ALGOL 58 which had introduced code blocks and the begin and end pairs for delimiting them, representing a ...
commonly used only the convention of single quotes around the word, generally as apostrophes, whence the name "stropping" (e.g.
'BEGIN'
).
*
ALGOL 68
ALGOL 68 (short for ''Algorithmic Language 1968'') is an imperative programming language member of the ALGOL family that was conceived as a successor to the ALGOL 60 language, designed with the goal of a much wider scope of application and ...
in some implementations treat letter sequences prefixed by a single quote,
', as being keywords (e.g.,
'BEGIN
)
In fact it was often the case that several stropping conventions might be in use within one language. For example, in
ALGOL 68
ALGOL 68 (short for ''Algorithmic Language 1968'') is an imperative programming language member of the ALGOL family that was conceived as a successor to the ALGOL 60 language, designed with the goal of a much wider scope of application and ...
, the choice of stropping convention can be specified by a compiler
directive (in ALGOL terminology, a "
pragmat"), namely POINT, UPPER, QUOTE, or RES:
* POINT for 6-bit (not enough characters for lowercase), as in
.FOR
– a similar convention is used in FORTRAN 77, where LOGICAL keywords are stropped as
.EQ.
etc. (see below)
* UPPER for 7-bit, as in
FOR
– with lowercase used for ordinary identifiers
* QUOTE as in ALGOL 60, as in
'for'
* RES reserved words, as used in modern languages –
for
is reserved and not available to ordinary identifiers
The various rules regimes are a
lexical specification for stropped characters, though in some cases these have simple interpretations: in the single apostrophe and dot regimes, the first character is functioning as an
escape character
In computing and telecommunications, an escape character is a character that invokes an alternative interpretation on the following characters in a character sequence. An escape character is a particular case of metacharacters. Generally, the ...
, while in the matched apostrophes regime the apostrophes are functioning as
delimiter
A delimiter is a sequence of one or more Character (computing), characters for specifying the boundary between separate, independent regions in plain text, Expression (mathematics), mathematical expressions or other Data stream, data streams. An ...
s, as in
string literal
string literal or anonymous string is a literal for a string value in the source code of a computer program. Modern programming languages commonly use a quoted sequence of characters, formally "bracketed delimiters", as in x = "foo", where , "foo ...
s.
Other examples:
*
Atlas Autocode
Atlas Autocode (AA)Original scans)) is a programming language developed around 1963 at the University of Manchester. A variant of the language ALGOL, it was developed by Tony Brooker and Derrick Morris for the Atlas computer. The initial AA and ...
had the choice of three: keywords could be
underlined
using backspace and overstrike on a
Flexowriter
The Friden Flexowriter was a teleprinter produced by the Friden, Inc., Friden Calculating Machine Company. It was a heavy-duty electric typewriter capable of being driven not only by a human typing, but also automatically by several methods, inc ...
keyboard, they could be introduced by a
%percent %symbol
, or they could be typed in
UPPER CASE
with no delimiting character ("uppercasedelimiters" mode, in which case all variables had to be in lower case).
*
ALGOL 60
ALGOL 60 (short for ''Algorithmic Language 1960'') is a member of the ALGOL family of computer programming languages. It followed on from ALGOL 58 which had introduced code blocks and the begin and end pairs for delimiting them, representing a ...
on the
Elliott 803 and
Elliott 503 computers used underlining. The Flexowriters (producing punched paper tape) had a non-movement key (underline _) so that typing _b_e_g_i_n produced
begin which was very readable. The vertical bar , was also a non-movement key so that typing , = produced a good approximation to ≠.
* The Kidsgrove compiler for
ALGOL 60
ALGOL 60 (short for ''Algorithmic Language 1960'') is a member of the ALGOL family of computer programming languages. It followed on from ALGOL 58 which had introduced code blocks and the begin and end pairs for delimiting them, representing a ...
on the
English Electric KDF9
KDF9 was an early British 48-bit computer designed and built by English Electric (which in 1968 was merged into International Computers Limited (ICL)). The first machine came into service in 1964 and the last of 29 machines was decommissioned i ...
appears to have used at least two other stropping conventions in addition to quotation marks
exclamation marksan
percent characters
*
ALGOL 68RS
ALGOL 68RS is the second ALGOL 68 compiler written by I. F. Currie and J. D. Morrison, at the Royal Signals and Radar Establishment (RSRE).
Unlike the earlier ALGOL 68-R, it was designed to be portable, and implemented the language of the Revised ...
programs are allowed the use of several stropping variants, even within the one language processor.
*
Edinburgh IMP
Edinburgh IMP is a development of Atlas Autocode, initially developed around 1966-1969 at the University of Edinburgh, Scotland. It is a general-purpose programming language which was used heavily for systems programming.
Expressively, IMP is h ...
inherited the Atlas Autocode
%percent %symbol
prefix convention but not its other stropping options
Examples of different ALGOL 68 styles
Note the leading pr (abbreviation of pragmat)
directive, which is itself stropped in POINT or quote style, and the for comment (from "") – see
ALGOL 68: pr & co: Pragmats and Comments for details.
Other languages
For various reasons
Fortran 77 has these "logical" values and operators:
.TRUE.,
.FALSE.,
.EQ.,
.NE.,
.LT.,
.LE.,
.GT.,
.GE.,
.EQV.,
.NEQV.,
.OR.,
.AND.,
.NOT.
.AND.,
.OR. and
.XOR. are also used in combined tests in
IF
and
IFF
statements in
batch file
A batch file is a Scripting language, script file in DOS, OS/2 and Microsoft Windows. It consists of a series of Command (computing), commands to be executed by the command-line interpreter, stored in a plain text file. A batch file may contain a ...
s run under
JP Software
4DOS is a command-line interpreter by JP Software, designed to replace the default command interpreter COMMAND.COM in MS-DOS and Windows. It was written by Rex C. Conn and Tom Rawson and first released in 1989. Compared to the default, it has ...
's command line processors like
4DOS
4DOS is a command-line interpreter by JP Software, designed to replace the default command interpreter COMMAND.COM in MS-DOS and Windows. It was written by Rex C. Conn and Tom Rawson and first released in 1989. Compared to the default, it has ...
,
4OS2, and
4NT / Take Command.
Modern use
To indicate identifiers
Most modern computer languages do not use stropping. However, some languages support optional stropping to specify identifiers that would otherwise collide with
reserved word
In a programming language, a reserved word (sometimes known as a reserved identifier) is a word that cannot be used by a programmer as an identifier, such as the name of a variable, function, or label – it is "reserved from use". In brief, an '' ...
s or which contain non-alphanumeric characters.
For example, the use of many languages in Microsoft's
.NET
The .NET platform (pronounced as "''dot net"'') is a free and open-source, managed code, managed computer software framework for Microsoft Windows, Windows, Linux, and macOS operating systems. The project is mainly developed by Microsoft emplo ...
Common Language Infrastructure
The Common Language Infrastructure (CLI) is an open specification and technical standard originally developed by Microsoft and standardized by International Organization for Standardization, ISO/International Electrotechnical Commission, IEC (ISO/ ...
(CLI) requires a way to use variables in a different language that may be keywords in a calling language. This is sometimes done by prefixes, such as
@
in C#, or enclosing the identifier in brackets, in
Visual Basic.NET
Visual Basic (VB), originally called Visual Basic .NET (VB.NET), is a multi-paradigm, object-oriented programming language developed by Microsoft and implemented on .NET, Mono, and the .NET Framework. Microsoft launched VB.NET in 2002 as the ...
.
A second major example is in many implementations of
Structured Query Language. In those languages reserved words can be used as column, table, or variable names by lexically delimiting them. The standard specifies enclosing reserved words in double quotes, but in practice the exact mechanism varies by implementation;
MySQL
MySQL () is an Open-source software, open-source relational database management system (RDBMS). Its name is a combination of "My", the name of co-founder Michael Widenius's daughter My, and "SQL", the acronym for Structured Query Language. A rel ...
, for example, allows reserved words to be used in other contexts by enclosing them in backticks, and
Microsoft SQL Server
Microsoft SQL Server is a proprietary relational database management system developed by Microsoft using Structured Query Language (SQL, often pronounced "sequel"). As a database server, it is a software product with the primary function of ...
uses square brackets.
In several languages, including
Nim,
R,
and
Scala, a reserved word or non-alphanumeric name can be used as an identifier by enclosing it in
backtick
The backtick is a typographical mark used mainly in computing. It is also known as backquote, grave, or grave accent.
The character was designed for typewriters to add a grave accent to a (lower-case) base letter, by overtyping it atop that let ...
s.
There are other, more minor examples. For example,
Web IDL
Web IDL is an interface description language (IDL) format for describing APIs (application programming interfaces) that are intended to be implemented in web browsers. Its adoption was motivated by the desire to improve the interoperability of ...
uses a leading underscore
_
to strop identifiers that otherwise collide with reserved words: the value of the identifier strips this leading underscore, making this stropping, rather than a naming convention.
Other purposes
In
Haskell
Haskell () is a general-purpose, statically typed, purely functional programming language with type inference and lazy evaluation. Designed for teaching, research, and industrial applications, Haskell pioneered several programming language ...
, surrounding a function name by backticks causes it to be parsed as an
infix operator.
by the compiler
In a
compiler front end
In computing, a compiler is a computer program that translates computer code written in one programming language (the ''source'' language) into another language (the ''target'' language). The name "compiler" is primarily used for programs tha ...
, originally occurred during an initial
line reconstruction phase, which also eliminated whitespace. This was then followed by
scannerless parsing (no tokenization); this was standard in the 1960s, notably for ALGOL. In modern use, is generally done as part of
lexical analysis
Lexical tokenization is conversion of a text into (semantically or syntactically) meaningful ''lexical tokens'' belonging to categories defined by a "lexer" program. In case of a natural language, those categories include nouns, verbs, adjectives ...
. This is clear if one distinguishes the lexer into two phases of scanner and evaluator: the scanner categorizes the stropped sequence into the correct category, and then the evaluator when calculating the value. For example, in a language where an initial underscore is used to strop identifiers to avoid collisions with reserved words, the sequence
_if
would be categorized as an identifier (not as the reserved word
if
) by the scanner, and then the evaluator would give this the value
if
, yielding
(Identifier, if)
as the token type and value.
Similar techniques
A number of similar techniques exist, generally prefixing or suffixing an identifier to indicate different treatment, but the semantics are varied. Strictly speaking, stropping consists of different representations of the same name (value) in different namespaces, and occurs at the tokenization stage. For example, in ALGOL 60 with matched apostrophe stropping,
'if'
is tokenized as (Keyword, if), while
if
is tokenized as (Identifier, if) – same value in different token classes.
Using uppercase for keywords remains in use as a convention for writing grammars for lexing and parsing – tokenizing the reserved word
if
as the token class IF, and then representing an if-then-else clause by the phrase
IF Expression THEN Statement ELSE Statement
where uppercase terms are keywords and capitalized terms are
nonterminal symbol
In formal languages, terminal and nonterminal symbols are parts of the ''vocabulary'' under a formal grammar. ''Vocabulary'' is a finite, nonempty set of symbols. ''Terminal symbols'' are symbols that cannot be replaced by other symbols of the v ...
s in a
production rule (
terminal symbol
In formal languages, terminal and nonterminal symbols are parts of the ''vocabulary'' under a formal grammar. ''Vocabulary'' is a finite, nonempty set of symbols. ''Terminal symbols'' are symbols that cannot be replaced by other symbols of the v ...
s are denoted by lowercase terms, such as
identifier
or
integer
, for an
integer literal In computer science, an integer literal is a kind of literal (computer programming), literal for an integer (computer science), integer whose Value (computer science), value is directly represented in source code. For example, in the assignment stat ...
).
Naming conventions
Most loosely, one may use
naming conventions
A naming convention is a convention (norm), convention (generally agreed scheme) for naming things. Conventions differ in their intents, which may include to:
* Allow useful information to be deduced from the names based on regularities. For ins ...
to avoid clashes, commonly prefixing or suffixing with an underscore, as in
if_
or
_then
. A leading underscore is often used to indicate private members in object-oriented programming.
These names may be interpreted by the compiler and have some effect, though this is generally done at the semantic analysis phase, not the tokenization phase. For example, in Python, a single leading underscore is a weak private indicator, and affects which identifiers are imported on module import, while a double leading underscore (and no more than one trailing underscore) on a class attribute invokes
name mangling
In compiler construction, name mangling (also called name decoration) is a technique used to solve various problems caused by the need to resolve unique names for programming entities in many modern programming languages.
It provides means to e ...
.
Reserved words
While modern languages generally use reserved words rather than stropping to distinguish keywords from identifiers – e.g., making
if
reserved – they also frequently reserve a syntactic class of identifiers as keywords, yielding representations which can be interpreted as a stropping regime, but instead have the semantics of reserved words.
This is most notable in C, where identifiers that begin with an underscore are reserved, though the precise details of what identifiers are reserved at what scope are involved, and leading double underscores are reserved for any use;
similarly in C++ any identifier that ''contains'' a double underscore is reserved for any use, while an identifier that begins with an underscore is reserved in the global space.
Thus one can add a new keyword
foo
using the reserved word
__foo
. While this is superficially similar to stropping, the semantics are different. As a reserved word, the string
__foo
represents the identifier
__foo
in the common identifier namespace. In stropping (by prefixing keywords by
__
), the string
__foo
represents the keyword
foo
in a separate keyword namespace. Thus using reserved words, the tokens for
__foo
and
foo
are (identifier, __foo) and (identifier, foo) – different values in the same category – while in stropping the tokens for
__foo
and
foo
are (keyword, foo) and (identifier, foo) – same values in different categories. These solve the same problem of namespace clashes in a way that is the same for a programmer, but which differs in terms of formal grammar and implementation.
Name mangling
Name mangling
In compiler construction, name mangling (also called name decoration) is a technique used to solve various problems caused by the need to resolve unique names for programming entities in many modern programming languages.
It provides means to e ...
also addresses name clashes by renaming identifiers, but does this much later in compilation, during semantic analysis, not during tokenization. This consists of creating names that include scope and type information, primarily for use by linkers, both to avoid clashes and to include necessary semantic information in the name itself. In these cases the original identifiers may be identical, but the context is different, as in the functions
foo(int x)
versus
foo(char x)
, in both cases having the same identifier
foo
, but different signature. These names might be mangled to
foo_i
and
foo_c
, for instance, to include the type information.
Sigils
A syntactically similar but semantically different phenomenon are
sigils, which instead indicate properties of variables. These are common in
BASIC
Basic or BASIC may refer to:
Science and technology
* BASIC, a computer programming language
* Basic (chemistry), having the properties of a base
* Basic access authentication, in HTTP
Entertainment
* Basic (film), ''Basic'' (film), a 2003 film
...
,
Perl
Perl is a high-level, general-purpose, interpreted, dynamic programming language. Though Perl is not officially an acronym, there are various backronyms in use, including "Practical Extraction and Reporting Language".
Perl was developed ...
,
Ruby
Ruby is a pinkish-red-to-blood-red-colored gemstone, a variety of the mineral corundum ( aluminium oxide). Ruby is one of the most popular traditional jewelry gems and is very durable. Other varieties of gem-quality corundum are called sapph ...
, and various other languages to identify characteristics of variables/constants: BASIC and Perl to designate the type of variable, Ruby both to distinguish variables from constants and to indicate scope. Note that this affects the ''semantics'' of the variable, not the ''syntax'' of whether it is an identifier or keyword.
Parallels in human language
Stropping is used in computer programming languages to make the
compiler
In computing, a compiler is a computer program that Translator (computing), translates computer code written in one programming language (the ''source'' language) into another language (the ''target'' language). The name "compiler" is primaril ...
's (or more strictly, the
parser
Parsing, syntax analysis, or syntactic analysis is a process of analyzing a string of symbols, either in natural language, computer languages or data structures, conforming to the rules of a formal grammar by breaking it into parts. The term '' ...
's) job easier, i.e. within the capability of the relatively small and slow computers available in early days of computing in the 20th century. However, similar techniques have been commonly used to aid reading comprehension for people too. Some examples are:
* Placing important words in
bold,
such as the very first mention of stropping at the head of this page, because defining stropping is the very purpose of the page.
* Formatting new words in ''
italic type
In typography, italic type is a cursive font based on a stylised form of calligraphic handwriting. Along with blackletter and roman type, it served as one of the major typefaces in the history of Western typography.
Owing to the influence f ...
'' when they are first introduced in text. This is commonly used in
science fiction
Science fiction (often shortened to sci-fi or abbreviated SF) is a genre of speculative fiction that deals with imaginative and futuristic concepts. These concepts may include information technology and robotics, biological manipulations, space ...
and
fantasy
Fantasy is a genre of speculative fiction that involves supernatural or Magic (supernatural), magical elements, often including Fictional universe, imaginary places and Legendary creature, creatures.
The genre's roots lie in oral traditions, ...
when introducing invented plants, foods, creatures; in
travelogue and historical writing when describing unfamiliar foreign words; and so on. Also using a special font, possibly associated with the language in question, for example using a
Gothic font for
German
German(s) may refer to:
* Germany, the country of the Germans and German things
**Germania (Roman era)
* Germans, citizens of Germany, people of German ancestry, or native speakers of the German language
** For citizenship in Germany, see also Ge ...
words.
* Using a different language, typically
Latin
Latin ( or ) is a classical language belonging to the Italic languages, Italic branch of the Indo-European languages. Latin was originally spoken by the Latins (Italic tribe), Latins in Latium (now known as Lazio), the lower Tiber area aroun ...
or
Greek
Greek may refer to:
Anything of, from, or related to Greece, a country in Southern Europe:
*Greeks, an ethnic group
*Greek language, a branch of the Indo-European language family
**Proto-Greek language, the assumed last common ancestor of all kno ...
to signify technical terms. This is similar to using reserved words, but it is usually combined with italic text to aid readability. For example:
** the typical
binomial nomenclature
In taxonomy, binomial nomenclature ("two-term naming system"), also called binary nomenclature, is a formal system of naming species of living things by giving each a name composed of two parts, both of which use Latin grammatical forms, altho ...
or "Latin names" of plants and animals helps the reader to see that "''Erithacus rubecula''" is the special technical name of the
Erithacus rubecula
The European robin (''Erithacus rubecula''), known simply as the robin or robin redbreast in the British Isles, is a small insectivorous passerine bird that belongs to the Old World flycatcher family Muscicapidae. It is found across Europe, e ...
, in a way that "Red-breasted European thrush" does not.
** many
legal
Law is a set of rules that are created and are law enforcement, enforceable by social or governmental institutions to regulate behavior, with its precise definition a matter of longstanding debate. It has been variously described as a Socia ...
terms where a short Latin phrase refers to a large body of law and precedent, such as ''
habeas corpus
''Habeas corpus'' (; from Medieval Latin, ) is a legal procedure invoking the jurisdiction of a court to review the unlawful detention or imprisonment of an individual, and request the individual's custodian (usually a prison official) to ...
'', ''
sub judice
In law, ''sub judice'', Latin for "under a judge", means that a particular case or matter is under trial or being considered by a judge or court. The term may be used synonymously with "the present case" or "the case at bar" by some lawyers.
I ...
'', ''
in loco parentis
The term ''in loco parentis'', Contemporary Latin, Latin for "in the place of a parent", refers to the legal responsibility of a person or organization to take on some of the functions and responsibilities of a parent.
Originally derived from ...
''.
** logic and mathematical terms such as ''
QED'', ''
a priori
('from the earlier') and ('from the later') are Latin phrases used in philosophy to distinguish types of knowledge, Justification (epistemology), justification, or argument by their reliance on experience. knowledge is independent from any ...
'', ''
vice versa''...
* In written
Japanese, in addition to
Kanji
are logographic Chinese characters, adapted from Chinese family of scripts, Chinese script, used in the writing of Japanese language, Japanese. They were made a major part of the Japanese writing system during the time of Old Japanese and are ...
characters, the two distinct alphabets (more strictly,
syllabaries
In the linguistic study of written languages, a syllabary is a set of written symbols that represent the syllables or (more frequently) morae which make up words.
A symbol in a syllabary, called a syllabogram, typically represents an (option ...
)
Hiragana
is a Japanese language, Japanese syllabary, part of the Japanese writing system, along with ''katakana'' as well as ''kanji''.
It is a phonetic lettering system. The word ''hiragana'' means "common" or "plain" kana (originally also "easy", ...
and
Katakana
is a Japanese syllabary, one component of the Japanese writing system along with hiragana, kanji and in some cases the Latin script (known as rōmaji).
The word ''katakana'' means "fragmentary kana", as the katakana characters are derived fr ...
,
both representing the same set of sounds, are used to distinguish phonetically spelled-out Japanese words from imported foreign words, respectively; Katakana is also used for emphasis, much like ''italics'' in English.
See also
*
Digraphs and trigraphs (programming)
In computer programming, digraphs and trigraphs are sequences of two and three characters, respectively, that appear in source code and, according to a programming language's specification, should be treated as if they were single characters.
...
*
Escape character
In computing and telecommunications, an escape character is a character that invokes an alternative interpretation on the following characters in a character sequence. An escape character is a particular case of metacharacters. Generally, the ...
Notes
References
Further reading
*
* {{citation , last=Lindsey , first=Charles Hodgson , author-link=Charles Hodgson Lindsey , title=An ISO-Code Representation for ALGOL 68 , journal=
ALGOL Bulletin
The ''ALGOL Bulletin'' () was a periodical regarding the ALGOL 60 and ALGOL 68 programming languages. It was produced under the auspices of IFIP Working Group 2.1 and published from March 1959 till August 1988. Throughout its run, the periodical pr ...
, id=AB31.3.6 , publisher=ACM , issue=31 , date=March 1970 , pages=37–60 , url=https://dl.acm.org/doi/10.5555/1061500.1061509
Parsing