Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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"))
 
PREVIOUS NEXT
Tagged: #define #function #scheme
ADD COMMENT
Topic
Name
8+5 =