Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
comp . lang . lisp
This is a Usenet group - learn more
Find or start a Google Group about lisp.
Group info
Language: English
Group categories:
Computers > Programming
More group info »
Active older topics
Discussions
View:  Topic list, Topic summary Topics 1 - 10 of 33966  Older »
Description: Discussion about LISP.
 

Tail recursion & CL 
  ... ... Racket: (define (fac n [result 1]) (if (zero? n) result (fac (sub1 n) (* n result))))
By WJ  - 9:49am - 2 new of 2 messages    

Call for Papers: Implementation and Application of Functional Languages 2012 
  ------------------------------ ------------------------------ ------------------- CALL FOR PAPERS 24th Symposium on Implementation and Application of Functional Languages (IFL 2012) University of Oxford, UK, August 30-September 1, 2012... more »
By josepedromagalh...@gmail.com  - 7:20am - 1 new of 1 message    

OT: when was C.L.L. officially opened? 
  Messages says it all. I am curious for a calculation I am making... All the best MA
By Marco Antoniotti  - 6:29am - 1 new of 1 message    

NEW HOT PHOTOS & VIDEOS 
  ALL INTERVIEW QUESTIONS& STUDY MATERIAL [link] TOP DATING TIPS TO ENCOURAGE WOMEN FOR DATING [link] FOR LATEST MOVIE UPDATED LINKS SUDIGADU MOVIE LATEST STILLS... more »
By rama rao  - 4:52am - 1 new of 1 message    

ELSE in LOOP 
  ... ... Wrong. In SBCL: * (loop for i from 0 to 10 if (evenp i) do (print i) and if (= i 6) do (print 'BINGO!!) else do () else do (print 'odd)) debugger invoked on a SB-INT:SIMPLE-PROGRAM-ERROR: A compound form was expected, but NIL found.... more »
By WJ  - 4:12am - 5 new of 5 messages    

a key system to replace gnu emacs's 1000 default keybindings 
  haha, yes the subject line is right. my first voice blog. [link] 〈The Roadmap to Completely Replace Emacs's Key System〉 [link] Xah
By Xah Lee  - May 22 - 1 new of 1 message    

OT: How to calculate reputation scores? 
  General question (not LISP related): Many web sites have an article/message/user reputation based on the up or down votes the article/message/user receives. How is a reputation score calculated given only up and down votes? (The user is not presented with a 1 to 5 scale for scoring something.)... more »
By Mike  - May 22 - 16 new of 16 messages    

DOLIST as DO 
  ... ... ... ... Racket: (define-syntax-rule (dolist (var list result-form ...) expr ...) (do ((listvar list (cdr listvar)) (var null)) ((null? listvar) result-form ...) (set! var (car listvar)) expr ...)) * (dolist (x '(a b c) 'ok) (display '--) (displayln x))... more »
By WJ  - May 22 - 2 new of 2 messages    

Stupid question (creating a sequence of *different* objects) 
  ... ... Racket: (apply eq? (make-list 2 (list 'u))) => #t (apply eq? (build-list 2 (thunk* (list 'u)))) => #f
By WJ  - May 22 - 2 new of 2 messages    

What is the main advantage of macros over functions? 
  ... ... Racket: (define (count-lines-in-file file-name) (with-input-from-file file-name (lambda() (sequence-length (in-lines))))) (for/sum ([file-name (find-files (curry regexp-match "\\.bak"))]) (count-lines-in-file file-name))
By WJ  - May 21 - 2 new of 2 messages    

1 - 10 of 33966   « Newer | Older »

XML