From 4f81c120167983a3cfc997e011c163b1b9010d89 Mon Sep 17 00:00:00 2001 From: Suzanne Soy Date: Sun, 21 Mar 2021 16:11:15 +0000 Subject: [PATCH] hyper-literate ignored #; comments it seems --- demo2-rkt.hl.rkt | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/demo2-rkt.hl.rkt b/demo2-rkt.hl.rkt index bcd412c..95c0bdd 100644 --- a/demo2-rkt.hl.rkt +++ b/demo2-rkt.hl.rkt @@ -22,20 +22,20 @@ Changing the order of execution: ꩜chunk[ (if condition if-true if-false) ;; can be expressed as: - #;(force (if condition - (λ () if-true) - (λ () if-false))) + ;;(force (if condition + ;; (λ () if-true) + ;; (λ () if-false))) (match v ([null if-null] [(cons a b) if-cons])) ;; can be expressed as: - #;(force (if (null? v) - (λ () if-null) - (λ () (let ([a (car v)] [b (cdr v)]) if-cons)))) + ;;(force (if (null? v) + ;; (λ () if-null) + ;; (λ () (let ([a (car v)] [b (cdr v)]) if-cons)))) (for/list ([x (in-list l)]) body) ;; can be expressed as - #;(map (λ (x) body) l)] - + ;;(map (λ (x) body) l) + ] ꩜subsection{Syntactic sugar} ꩜chunk[ @@ -241,4 +241,5 @@ These environment manipulations can be modeled with row types: )] ꩜chunk[<*> - #;] + ;; + ]