dirtree.l

来自「A very small LISP implementation with se」· L 代码 · 共 20 行

L
20
字号
# 22aug05abu# (c) Software Lab. Alexander Burger(load "lib/http.l" "lib/xhtml.l")(de subDirs (Dir)   (cache '*DirCache (or (pack (flip (chop Dir))) ".")      (mapcan         '((F)            (when (=T (car (info (setq F (pack Dir F)))))               (cons (pack F '/)) ) )         (dir Dir) ) ) )(de dir.html (Path)   (and (app) (setq *DirTree (subDirs)))   (html NIL "Test" NIL NIL      (<tree> "@dir.html" Path *DirTree subDirs nil subDirs) ) )(server 8080 "@dir.html")

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?