Top "Racket" questions

Racket is an extensible multi-paradigm programming language in the Lisp/Scheme family.

How is Racket different from Scheme?

Racket is a descendant of Scheme. How is Racket different than R6RS? What did it add, or take away, …

scheme lisp racket
What is the best Scheme or LISP implementation for OS X?

I am looking for a version of Scheme or even LISP that I can use to recover some lost Lisp …

macos lisp scheme racket
What are the differences between Clojure, Scheme/Racket and Common Lisp?

I know they are dialects of the same family of language called lisp, but what exactly are the differences? Could …

clojure lisp scheme common-lisp racket
removing last element of a list(scheme)

So I have to remove the last element of a list in scheme. For example, let's say I have a …

scheme racket
How do I get an item from a list at a given index in racket language?

I'm trying to get an item from a list at a given index for a loop statement. (define decision-tree-learning (lambda (…

list scheme racket
What are the actual differences between Scheme and Common Lisp? (Or any other two dialects of Lisp)

Note: I am not asking which to learn, which is better, or anything like that. I picked up the free …

lisp scheme common-lisp racket sicp
Scheme getting last element in list

Im trying to write a simple scheme function that returns the last element of a list. My function looks like …

scheme racket r5rs
Check if an argument is a list or an atom

How do I check if something is an atom? I'm looking for something like number? or list?.

scheme racket
Converting String to integer in Scheme

How can I convert a string of digits to an integer ? I want "365" to be converted to 365. What I have …

scheme racket
How to run scheme with Emacs?

I followed this tutorial and successfully installed Emacs, STk, Quack. The question is how can I load my program like …

emacs scheme racket