Search found 7 matches
- Sat Apr 21, 2012 11:24 pm
- Forum: Common Lisp
- Topic: stack size
- Replies: 1
- Views: 3933
stack size
how do i increase stack size in clisp
- Fri Apr 20, 2012 1:56 am
- Forum: Common Lisp
- Topic: want to make stack
- Replies: 1
- Views: 3878
want to make stack
;; IN THIS PROGRAM I WANT TO CHANGE REMOVE-FRONT FUNCTION TO RETURN ;;VALUES IN REVERSE ORDER LIKE ;;IF I ENTER a c b it returns a then c then b but i want that b must be returned first ;;then c then a (defstruct q (key #'identity) (last nil) (elements nil)) (defun make-empty-queue () (make-q)) (def...
- Fri Apr 20, 2012 12:35 am
- Forum: Common Lisp
- Topic: can any one provide me clisp stack program
- Replies: 1
- Views: 4472
can any one provide me clisp stack program
i need this program for my project submission
- Thu Apr 19, 2012 6:01 am
- Forum: Common Lisp
- Topic: input buffered file system character error
- Replies: 3
- Views: 6165
Re: input buffered file system character error
i dont know how to run this program
- Thu Apr 19, 2012 12:45 am
- Forum: Common Lisp
- Topic: input buffered file system character error
- Replies: 3
- Views: 6165
input buffered file system character error
(ed note: this was just a copy of the code at http://www.lispworks.com/documentation/ ... ug-22.html)
- Wed Apr 18, 2012 9:06 pm
- Forum: Common Lisp
- Topic: this queue program is not running showing error
- Replies: 4
- Views: 16077
Re: this queue program is not running showing error
still this program is not working
plss help i need it by tomorrow morning
plss help i need it by tomorrow morning
- Wed Apr 18, 2012 10:05 am
- Forum: Common Lisp
- Topic: this queue program is not running showing error
- Replies: 4
- Views: 16077
this queue program is not running showing error
(defun make-queue (lambda () (let ((front '()) (back '())) (lambda (cmd . data) (define exchange (lambda () (set! front (reverse back)) (set! back '()))) (case cmd ((push) (push (car data) back)) ((pop) (or (pop front) (begin (exchange) (pop front)))) ((peek) (unless (pair? front) (exchange)) (car ...