hol list 1 Sections HOLlib Doc
IF YOU CAN SEE THIS go to /sfa/Nuprl/Shared/Xindentation_hack_doc.html
Def map2(f;l1;l2)
Def == if null(l1)
Def == then nil
Def == else if null(l2)
Def == else then nil
Def == else else cons((f(head(l1),head(l2))); map2(f;tl(l1);tl(l2)))
Def == else fi 
Def == fi 
Def (recursive)

is mentioned by

Def map2 == f:'a'bl1:'al2:'b. map2(f;l1;l2)[hmap2]

Try larger context: HOLlib IF YOU CAN SEE THIS go to /sfa/Nuprl/Shared/Xindentation_hack_doc.html

hol list 1 Sections HOLlib Doc