-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
30 lines (19 loc) · 840 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Chomsky sentence generator.
Chomsky is an aid to writing linguistic papers in the style
of the great master. It is based on selected phrases taken
from actual books and articles written by Noam Chomsky.
Upon request, it assembles the phrases in the elegant
stylistic patterns that Chomsky is noted for.
To generate sentences of linguistic wisdom in a paragraph
For 1 sentence wrapped at 72 characters:
> chomsky()
For n sentences wrapped at 72 characters:
> chomsky(n)
For n sentence wrapped at x characters:
> chomsky(n, x)
The phrase database was converted directly from someone else's Lisp program:
http://www-personal.umich.edu/~jlawler/foggy.lsp
Created by Raymond Hettinger, 2005
http://code.activestate.com/recipes/440546-chomsky-random-text-generator/
Modified by Greg Fitch, OpenStax, 2020
https://github.com/gregfitch