lambda -> λ

This commit is contained in:
Sergiu Ivanov 2020-02-20 15:36:29 +01:00
parent 75bf044fd8
commit cd714773be
2 changed files with 3 additions and 3 deletions

View File

@ -89,12 +89,12 @@
;;; Build an update function from an update function form.
(define (update-function-form->update-function form)
(lambda (s) (eval-with s form)))
(λ (s) (eval-with s form)))
;;; Build a network from a network form.
(define (network-form->network bnf)
(make-hash
(hash-map bnf (lambda (x form)
(hash-map bnf (λ (x form)
(cons x (update-function-form->update-function form))))))
;;; Build a network from a list of pairs of forms of update functions.

View File

@ -120,7 +120,7 @@
;;;
(define (eval-with ht expr)
(parameterize ([current-namespace (make-base-namespace)])
(hash-for-each ht (lambda (x val)
(hash-for-each ht (λ (x val)
(namespace-set-variable-value! x val)))
(eval expr)))