How to use the built-in function void?. The code
(void? void)
returns #f. Deeply confused.
Appreciate your help. And apparently I have to type more stuff in order to get it posted
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
voidis a function that returns the special constant#<void>. So the function itself is not void, but its result is:produces
#t. See http://docs.racket-lang.org/guide/void_undefined.html and/or http://docs.racket-lang.org/reference/void.html.