Hoc (programming language)
hoc, an acronym for High Order Calculator, is an interpreted programming language that was used in the 1984 book The [Unix Programming Environment] to demonstrate how to build interpreters using Yacc.
hoc was developed by Brian Kernighan and Rob Pike as a glorified interactive calculator. Its basic functionality is to evaluate floating-point numerical expressions, e.g.,. Then, variables were added, conditionals, loops, user-defined functions, simple IO, and more, using a syntax resembling C.
An improved hoc interpreter was included in Eighth Edition Research Unix in 1985, but it has not been generally adopted by commercial Unix systems or by Linux distributions. Instead, the earlier calculator languages dc and bc have become widespread on those systems. hoc survived and continued to evolve as part of the Plan 9 operating system. Several improved versions of hoc were released as free software by Bell Labs and other individuals. hoc is used, alongside python, as a scripting language for the Neuron simulator.
Examples
The following is a simple example of an interactive calculator session in hoc; text represents hoc's output:1+2*3
7
angle=PI/3
r=sin
r
0.866025
r*2
1.73205
And a simple example of functions and flow control:
func atan2
atan2
0.982794
atan2
atan2 domain error
0.0
hoc implementations and versions
- AT&T versions:
- *, including hoc.
- * from Bell Labs, released as free software. This is the Research Unix version, slightly improved over the one in the book.
- * released under the MIT License. This version is slightly different from the Research Unix version, with the most notable difference being that numbered function arguments were replaced by named arguments. See also Plan 9's .
- Other versions:
- * by Nelson H. F. Beebe.
- * by Nadav Y. Har'El.
- * by Jack Dennon.
- * by Michael Hines, John W. Moore, and Ted Carnevale.