Lisp is a family of programming languages with a fully parenthesized Polish prefix notation.

learn more… | top users | synonyms

1
vote
3answers
21 views

add a function with parameters to a hook

I want to run a function according to the programming language when I open a source code file using the following. I have to pass the language-specific str to the foo function. How can do it in the ...
1
vote
1answer
36 views

Simple Nested Evaluations in DrRacket

so I'm working on some practice problems for my programming languages class, and one of the assignments is to create a script "MyEval" which allows you to do simple nested addition and multiplication. ...
2
votes
3answers
69 views

Lists and Member Implementation in Common Lisp

I'm just starting to learn Common Lisp and the text I'm reading uses an example with the member function. I'm unsure of the distinction between these two blocks of code: (if (member nil '(1 nil 2 ...
3
votes
2answers
79 views

Circular list in Common Lisp

I am working using a visual programming environment for musical composition based on CL . I am trying to create a function that when given say 3 elements (1 2 3) will return 1, 2, 3, 1, 2, 3 etc., one ...
4
votes
4answers
116 views

Why does not exist a primitive `call-with-current-continuations` in Common Lisp?

Lately I've been investigating the differences between Scheme and Common Lisp regarding the approach that these two languages have towards continuations. I've noticed that the Common Lisp approach ...
1
vote
1answer
50 views

Emacs Lisp map over a list of function names and call them all with the same arg

I'm having trouble understanding the approach I need to take to fold over a list of functions and invoke them all with a particular argument. Here is what I as assumed would work. I've tried various ...
2
votes
2answers
62 views

What Racket function can I use to insert a value into an arbitrary position within a list?

I know this is trivial to implement, but I want Racket to live up to it's "batteries included" promise. I am looking for a function that works something like this: > (define (between lst item ...
2
votes
1answer
27 views

How to execute sudo command with filter in elisp

I would like to use elisp to execute a privileged command, then use a filter to do further processing when certain output is seen. It's my understanding, after exhaustive RTFM'ing, that I can: Set ...
1
vote
3answers
87 views

how to write a scheme program consumes n and sum as parameters, and show all the numbers(from 1 to n) that could sum the sum?

How to write a scheme program consumes n and sum as parameters, and show all the numbers(from 1 to n) that could sum the sum? Like this: (find 10 10) ((10) (9 , 1) (8 , 2) (7 ...
4
votes
4answers
60 views

Is an empty list in Lisp built from a cons cell?

I'm trying to emulate Lisp-like list in JavaScript (just an exercise with no practical reason), but I'm struggling to figure out how to best represent an empty list. Is an empty list just a nil value ...
3
votes
4answers
78 views

Expand a macro form completely

I'd like to learn the internals of Lisp, so I want to see how everything is implemented. For example, (macroexpand '(loop for i upto 10 collect i)) gives me (in SBCL) (BLOCK NIL (LET ((I 0)) ...
3
votes
4answers
65 views

removing duplicates from a list and combining it in Lisp

I have a following type of list (("abc" "12" "45") ("abc" "34" "56") ("cdb" "56" "78") ("deg" "90" "67") ("deg" "45" "34")) and desired output is (("abc" "12" "45" "34" "56") ("cdb" "56" ...
-2
votes
2answers
88 views

scheme features compared to lisp [closed]

Now, by Church-Turing thesis all comp languages are equivalent, however I was curious if Scheme has feature(s) that are not present Lisp and those feature(s) cannot be trivially implemented in LISP. ...
1
vote
0answers
87 views

How closely related are aspect-oriented programming to macros? [closed]

I've heard the term 'aspect oriented programming' tossed around for a long time... I'm still confused... However, it seems to me that the general definition of an aspect is that you can take an ...
1
vote
3answers
58 views

explanation of lambda expression in scheme

I was wondering if anyone could explain this lambda expression and how the output is derived. I put it into the interpreter and am getting ((2) 2). I'm just not sure why it's giving me that instead ...
2
votes
3answers
188 views

Are there any Stackless Python like projects for other languages (Java, Lisp, Haskell, Go etc) [closed]

Well thats the question. Are there any projects for other languages which try to imitate what stackless python is doing for python?
-1
votes
2answers
62 views

SICP example doesn't work on Racket

I am trying an example on Chapter 4 of SICP (part of writing the LISP interpreter) (define (definition-value exp) (if (symbol? (cadr exp)) (caddr exp) (make-lambda ...
3
votes
1answer
60 views

emacs, how to invoke kill-region several times?

it is said in the manual that if you use kill-region sequentially, the texts you kill will be concatenated into one in the kill-ring. I'm just confused how this works. So I tried to eval this in the ...
0
votes
1answer
43 views

Method called twice instead of single time

I have trouble with calling methods from lisp command in Autocad. I am using lisp file in Autocad. When I call the macro name from Autocad it calls the method twice instead of single time. In My ...
1
vote
2answers
42 views

Understanding objects with local state — Scheme

i'm studying for my scheme final and objects with local state has always been a tough subject. Here is a question from my final exam that i need help on. (define (make-incrementer n) (let ((old 0) ...
0
votes
0answers
48 views

make-lambda function alternative in racket

I am learning scheme by reading SICP. One function in SICP measured is (make-lambda ...) I am using Racket as the scheme interpreter. However Racket doesn't have make-lambda function built in. ...
8
votes
4answers
124 views

scheme continuations for dummies

For the life of me, I can't understand continuations. I think the problem stems from the fact that I don't understand is what they are for. All the examples that I've found in books or online are very ...
1
vote
1answer
55 views

How can I unserialize a s-exp then seralize it and avoid upper-casing?

I am supposed to read a complex s-expression tree, modify some nodes and save it somewhere. It appears that in process the 'read function is "modifying" the input. For instance in a simple example: ...
2
votes
2answers
69 views

What does the asterisk do in Python other than multiplication and exponentiation?

In Peter Norvig's Lisp interpreter written in Python (http://norvig.com/lispy.html), he defines Lisp's eval as follows: def eval(x, env=global_env): "Evaluate an expression in an environment." ...
3
votes
2answers
85 views

Lisp print list as matrix

I am working in LISP, trying to make Windows game minesweeper. I have a list (1 1 1 2 2 2 3 3 3) and want to print that like matrix (1 1 1 2 2 2 3 3 3) How to do that? Edit I am at the ...
-2
votes
1answer
46 views

Lisp stack overflow bound [closed]

I really need an advice. I have a function that have big number of recursive calls. Actually i need it. And algorithm is correct it works in C but in lisp there is a problem because of stack overflow. ...
-2
votes
1answer
70 views

How to implement a Stack in LISP language [closed]

I am still learning Lisp language and I need to understand how to implement a stack with Lisp (Need push-pop-peek functions.). In addition I have found this code when I am searching for help. But I am ...
2
votes
3answers
143 views

How to implement a macro system into my LISP

I'm writing my own LISP based on Write Yourself a Scheme in 48 hours. (The code is here.) As a last exercise I want to implement macros. How can this be done considering that I represent expressions ...
0
votes
1answer
89 views

Common Lisp Loop Trouble

I have some trouble fully understanding CL's Loop macro. This is my code for Project Euler Nr. 32: (defun number-to-list (nr) (map 'list #'digit-char-p (prin1-to-string nr))) (defun nine-digits-p ...
3
votes
3answers
91 views

Use conditional places in setf

Lets say I have two variables and I want to set the variable with lower value to nil. Is it possible to make it work this way? (setf a1 5) (setf a2 6) (setf (if (< a1 a2) a1 a2) nil )
1
vote
0answers
172 views

Can every recursive function be rewritten using tail calls? [duplicate]

Can every recursive function be rewritten using tail calls? If not, what are examples of recursive functions for which this can't be done?
0
votes
1answer
52 views

Need to understand a LISP program with recursion

(defun help(a x) (if (null x) nil (cons (cons a (car x)) (help a (cdr x))))) (defun partition(x) (if (null x) '(nil) (append (help (car x) (partition(cdr x))) (partition(cdr x))))) ...
2
votes
2answers
61 views

scheme pattern checking if it is a number

I am a scheme beginner and I am wondering how to explain this piece of scheme code? Looks so preculiar! (define (calc2 exp) (match exp [(? number? x) x])) ...
2
votes
2answers
97 views

Lisp recursive macro problems

I'm writing a recursive Lisp macro taking a number n and evaluating the body n times (an exercise from ANSI Lisp). I've tried two ways of doing this -- having the macro call itself in its expansion, ...
1
vote
5answers
58 views

Converting an s expression to a list in Scheme

If I have an s expression, for example '(1 2 (3) (4 (5)) 6 7), how would I convert that into a list like (1 2 3 4 5 6 7)? I basically need to extract all of the atoms from the s expression. Is there a ...
-1
votes
3answers
89 views

List difference function

Does any existing programming language, particularly in the Lisp or ML families, have a library function to calculate list difference in the sense of 'first until start of second' - I'm not sure ...
2
votes
3answers
65 views

Lisp-like grammar compile into javascript with perl

As personal exercise for learning perl I want write one "lisp-like grammar" to javascript compiler in the perl. "Lisp-like", so not full Lisp implementation, and i hope than the final grammar will be ...
-3
votes
4answers
56 views

Lisp function adding odd numbers from a subset

I need to make a fucntion in a clisp that would add all odd numbers from a set.For example subset (2,8), the result would be 15(3+5+7).any suggestions? I do have something like this, where a is the ...
2
votes
1answer
48 views

How to convert sql-timestamp to string in Racket?

The closest thing I came up with looking at the documentation was (define (sql-datetime->rfc2822 datetime) (let ([dt (sql-datetime->srfi-date datetime)]) (date->string dt ...
3
votes
4answers
112 views

Common lisp push from function

I have the following common lisp functions: (aggregate line1 line2) and (queuer data result). queuer should push into result either the values line1 and line2 if they have the 1st field different, or ...
0
votes
2answers
52 views

LISP: Pass variable/symbol into function without evaluating

I have a function and 2 variables that look something like: (setq A '(A B)) (setq B '(A B)) (defun myFunc (var1 var2) (if (equal var1 var2) 'TRUE 'FALSE)) >>> ...
2
votes
3answers
54 views

Recursive range in Lisp adds a period?

(define .. (lambda (start stop) (cond ((> (add1 start) stop) (quote ())) ((eq? (add1 start) stop) (sub1 stop)) (else (cons start (.. (add1 start) stop)))))) I have ...
2
votes
2answers
86 views

Clojure macro that doesn't need space next to it

Trying to create a macro form of Haskell's lambda syntax, I'm pretty close except one last tweak, the / (which should be a \, but can't grumble..) needs a space next to it, is there any way to make it ...
1
vote
1answer
32 views

Macro want to use symbol instead of string in clojure

So trying to make something like the haskell lambda syntax, and with a macro this is what I've got: (defmacro / [& all] (let [args (take-while #(not (= %1 "=>")) all) argCount (count ...
5
votes
6answers
176 views

GUI Programming in LISP?

I did a fair amount of Lisp programming a few years back, but it was all really console-based things. I did use cells-gtk(2), but now that's really not maintained anymore and obviously we're Gtk3 now. ...
2
votes
1answer
34 views

Space character inside an argument (emacs lisp)

In windows, I set the variable inferior-lisp-program to be (shell-quote-argument "D:/Program Files/ccl/wx86cl.exe"). But when I run inferior lisp with the command run-lisp, emacs responds: Searching ...
0
votes
2answers
56 views

Common Lisp fuzzy-searchable function reference?

Is there a nice and friendly set of searchable documentation for ANSI Common Lisp anywhere? Preferably one that can be downloaded for use offline. I've Google but can only find static HTML pages that ...
-1
votes
1answer
35 views

LISP: no output

I want to run a function but not have it output the result in the terminal. So for example, (set 'A 'B) normally returns B in the console like the following: >>> (set 'A 'B) B ...
2
votes
1answer
71 views

how to return function in elisp

This is related to this question: elisp functions as parameters and as return value (defun avg-damp (n) '(lambda(x) (/ n 2.0))) Either (funcall (avg-damp 6) 10) or ((avg-damp 6) 10) They ...
3
votes
3answers
90 views

Summing even fibonacci numbers in lisp

I've just started learning Lisp, and I'm working through some Project Euler problems. I'm stuck on the one where you sum the even Fibonacci numbers below a max number. The things I've tried follow. ...

1 2 3 4 5 53