Search found 3 matches

by nechalus
Sun May 30, 2010 10:34 pm
Forum: Common Lisp
Topic: problrm with a function
Replies: 2
Views: 3408

problrm with a function

Hello I am trying to load a function lisp. But there is an error : (setf base nil) Function : (defun find-wrong-word (str) (dolist (word base) (when (search word str :test #'string-equal) (return-from find-wrong-word t)))) Error : Warning: Syntactic warning for form BASE: BASE assumed special. I don...
by nechalus
Wed May 26, 2010 3:31 am
Forum: Common Lisp
Topic: a mini anti spam with lisp
Replies: 3
Views: 4064

Re: a mini anti spam with lisp

thank you very much. is an interesting approach, I will try to develop it. but I have another technical problem with reading files. In fact, I need to make a function with : input = the name of a file to read. output = a list containing the data file. example : file.txt = { Hi, i'm sorry i can't com...
by nechalus
Tue May 25, 2010 4:23 pm
Forum: Common Lisp
Topic: a mini anti spam with lisp
Replies: 3
Views: 4064

a mini anti spam with lisp

Hello everyone, I am looking for information that will help me start my project in lisp. In fact, I must make a mini anti spam lisp that will take as parameter a text file containing an email, then returns if it is spam or not. I need a very basic algorithm that I have to implement in Lisp. How can ...