blob: df4964cfdcc9d2473edd18461dfe40da208ca722 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#print
One last one with "\". Add the following to
the end of the first line in file "temp",
separated by a single blank.
/* &"\n" isn't &'\n' */
You can do it by re-typing the line, but it's
a nice exercise to use "s".
Type "ready" after you have re-written the file.
#create Ref
p = &"\n"; /* &"\n" isn't &'\n' */
#create temp
p = &"\n";
#user
#cmp temp Ref
#log
#next
45.1a 10
|