Jak zdefiniować funkcję w schemacie
; Hello world as a variable
(define vhello "Hello world") ;1
; Hello world as a function
(define fhello (lambda () ;2
"Hello world"))
Lil Uzi