multiple libraries

This commit is contained in:
2026-07-29 13:27:48 +02:00
parent f949e2dbb3
commit 727e0643af
9 changed files with 573 additions and 184 deletions
+11 -1
View File
@@ -23,6 +23,7 @@
list-drop!
path-equal?
make-select-list
new-id
)
@@ -159,4 +160,13 @@
label))))))
)
items)
slct))
slct))
(define (new-id)
(let* ((s (current-milliseconds))
(r (random 1000000))
(id (string->symbol (format "id-~a-~a" s r))))
id))