Racket is an extensible multi-paradigm programming language in the Lisp/Scheme family.
Or the basic work need to do to create a GUI. I know the basic Components of GUI, but where …
user-interface lisp racket htdpFor 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 racketIn Haskell, like in many other functional languages, the function foldl is defined such that, for example, foldl (-) 0 [1,2,3,4] = -10. …
recursion functional-programming scheme racket foldI've been trying to do a function that returns the Cartesian Product of n sets,in Dr Scheme,the sets …
scheme racket cartesian-productI'm in the process of learning Scheme. I recently spent (too much!) time trying to find a bug in a …
scheme racketI just discovered Racket a few days ago, and I'm trying to get more comfortable with it by writing a …
functional-programming lisp scheme expression racket