about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2022-12-03 15:53:50 -0500
committerelioat <elioat@tilde.institute>2022-12-03 15:53:50 -0500
commitee5ebcb9b97b1ff0659098b97227fc7e40f38de7 (patch)
treeb6d4708a6c2c3d0bbf7dfaf4d86819ea75486da9 /src
parentb1f998e5596534efc5ae2343b7847ad54e2b0f49 (diff)
downloaddecember-2022-ee5ebcb9b97b1ff0659098b97227fc7e40f38de7.tar.gz
boring formating
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