about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tmp.rkt6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/tmp.rkt b/src/tmp.rkt
index def2ea0..b10d3b1 100644
--- a/src/tmp.rkt
+++ b/src/tmp.rkt
@@ -34,13 +34,15 @@
 (define (inspector1 h)
     (hash-map h
         (lambda (k v)
-                (display (~a "key: " k ", value: " v "\n")))))
+                (display (~a "  key: " k "\nvalue: " v "\n=====\n"))))
+    h)
 
 (define (inspector2 h)
     (hash-map h
         (lambda (k v)
                 (if (hash? v) (~a "value " v " was a hash table!\n")
-                        (display (~a "key: " k ", value: " v "\n"))))))
+                        (display (~a "  key: " k "\nvalue: " v "\n=====\n")))))
+    h)
 
 ; (inspector1 test-data)
 (inspector2 test-data)
\ No newline at end of file