Scheme is a functional programming language in the Lisp family, closely modeled on lambda calculus with eager (applicative order) evaluation.
I've just started one of my courses, as classes just began 2 weeks ago, and we are learning Scheme right now …
schemeAlso, even if I can use Common Lisp, should I? Is Scheme better?
lisp scheme common-lisp sicpI know that you can use ' (aka quote) to create a list, and I use this all the time, …
scheme racket evaluation quoteI read somewhere where rich hickey said: "I think continuations might be neat in theory, but not in practice" I …
functional-programming clojure scheme continuationsIn C and C++, the ! negates the result: if( !( a == b ) ) In Scheme, I found only eq?. How do I …
scheme boolean-logicCould somebody explain what an "improper list" is? Note: Thanks to all ! All you guys rock!
functional-programming erlang lisp schemeFor example I have (list "a" "1" "b" "2" "c" "3"). Now I want to turn this list into one "a1b2c3". …
string list scheme racket intermediate-languageI am just wondering if there is the string split function? Something like: > (string-split "19 2.14 + 4.5 2 4.3 / - *") '("19" "2.14" "+" "4.5" "2" "4.3" "/" "-" "*") I haven't …
scheme racket