home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Source Code 1992 March
/
Source_Code_CD-ROM_Walnut_Creek_March_1992.iso
/
msdos
/
aijournl
/
ai_oct86.arc
/
AIAPP6.FIG
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1986-07-16
|
384 b
|
10 lines
FUNCTION append_list(list1,list2 : node_ptr) : node_ptr ;
BEGIN
IF list1 = NIL
THEN append_list := list2
ELSE append_list := cons(head(list1),append_list(tail(list1),list2)) ;
END ; (* append_list *)
Figure 6 - The append routine.