DEFINITION MODULE AccentStrings; (* Copyright 1987,1988 Ken Badertscher * Permission is granted to freely use this program and source code, * however it may NOT be used or modified for any commercial gain. * The author disclaims responsibility for any damages resulting * from the use or misuse of this program, and disclaims liability * for losses of any kind or nature, financial or otherwise, * incurred as a result of the use of this software. *) CONST PAGEWIDTH = 78; TYPE AccentString = ARRAY [0..PAGEWIDTH] OF CHAR; VAR vowel : ARRAY [0..5] OF AccentString; cocknie : ARRAY [0..2] OF AccentString; nerdism : ARRAY [0..8] OF AccentString; curse : ARRAY [0..13] OF AccentString; censor : ARRAY [0..7] OF AccentString; article : ARRAY [0..6] OF AccentString; END AccentStrings.