osx - How to create .lisp files and run them on mac? -
create .lisp files https://www.tutorialspoint.com/lisp/lisp_environment.htm describing step step, says texteditor on mac can save .lisp files, wasn't able do.
load .lisp file (load "filename.lisp") leads error: file such name doesn't exist
texteditor on mac has limitations how file can saved (.txt, etc.). can use other editor, ex: textwrangler, allow write file extension. or can use editors specific lisp, ex: emacs (more massive)
it's possible when type (load "filename.lisp") searches in specific directory, it's not present. so, avoid this, should type full path file want open. ex: (load "/users/macbook/desktop/foldername/filename.lisp")
Comments
Post a Comment