Search found 1 match

Reading from a text file

For such a seemingly simple task, I am having much difficulty with it. Here is the code... (defun C:TXTFILE (/ f LINE) (progn (setq f (open "TEST.TXT" "r")) (setq LINE (read-line f)) (close f) ) (princ)) I'm getting an error when I run that says "; error: bad argument type: ...

Go to advanced search