Answers for "how to define a function in scheme"

PHP
0

how to define a function in scheme

; Hello world as a variable
(define vhello "Hello world")     ;1 

; Hello world as a function
(define fhello (lambda ()         ;2
		 "Hello world"))
Posted by: Guest on April-08-2022

Code answers related to "how to define a function in scheme"

Browse Popular Code Answers by Language