Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!helios!tamuts.tamu.edu From: e343ca@tamuts.tamu.edu (Colin Allen) Newsgroups: comp.lang.lisp Subject: weird common lisp feature Keywords: read, read-line Message-ID: <12413@helios.TAMU.EDU> Date: 21 Feb 91 04:17:18 GMT Sender: usenet@helios.TAMU.EDU Organization: Texas A&M University Lines: 15 Can anyone tell me why foo1 below appears to execute the read-line before the print, but foo2 executes the print before the read? (defun foo1 () (print 'hello) (read-line)) (defun foo2 () (print 'hello) (read)) Thanks. Colin Allen e343ca@tamuts.tamu.edu Department of Philosophy Texas A&M University (409) 845-3606 College Station, TX 77843-4237