Lisp Programming tutorial - Loading Programs into the Interpreter

preview_player
Показать описание
A tutorial on how to load a files contents into the interpreter
Рекомендации по теме
Комментарии
Автор

Thanks for this! Very helpful even in 2023.

DemoDogDemos
Автор

Something to note about CLISP: If you are trying to specify a path, write \\ instead of \.
eg
(load "C:\\LISP stuff\\foo.lisp")

I've just been tearing my hair out over this for days

BaddeJimme
Автор

@Devourer09 yeah, its a pretty controversial programming language, but i find it interesting trying to learn it

CasualCoder
Автор

@theballoondude2 do u have the file in the same directory as the interpretor? if not then it wont be able to recognize the file.

CasualCoder
Автор

The best way to solve this problem is to keep the file in known location like C drive. No need to add .lisp to the file name instead execute this command in the interpreter (C:\\filename.txt) .

venkateshtatikonda
Автор

the first, i can not load file.
when i copy my file "add.lisp" in to C drive (C:) and i try again. So successfull.

vanhai
Автор

I forgot the quotation marks -_-
thanks for the vid

BryanStetson