Tagged Questions
0
votes
2answers
36 views
Passing multiple variables (image->color-list) as a procedure argument RACKET
I am trying to create a procedure which will accept two colour-lists. Because this procedure is within another procedures(local). I need to convert image->color-list as I am passing the arguments. I ...
0
votes
4answers
93 views
True / false evaluation doesn't work as expected in Scheme
I'm trying to compare two booleans :
(if (equal? #f (string->number "123b"))
"not a number"
"indeed a number")
When I run this in the command line of DrRacket I get "not a number" ...