Bell 32V development
[unix-history] / usr / lib / learn / editor / L44.1i
CommitLineData
00b28f22
TL
1#print
2One last one with "\". Add the following to
3the end of the first line in file "temp",
4separated by a single blank.
5
6/* &"\n" isn't &'\n' */
7
8You can do it by re-typing the line, but it's
9a nice exercise to use "s".
10Type "ready" after you have re-written the file.
11#create Ref
12p = &"\n"; /* &"\n" isn't &'\n' */
13#create temp
14p = &"\n";
15#user
16#cmp temp Ref
17#log
18#next
1945.1a 10