1 Star 1 Fork 0

evilbinary/duck-compiler

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
options.ss 685 Bytes
一键复制 编辑 原始数据 按行查看 历史
evilbinary 提交于 2020-08-16 18:35 . update error
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;Copyright 2016-2080 evilbinary.
;作者:evilbinary on 12/24/16.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(library (options)
(export
option-set
option-get
make-options
)
(import (scheme))
(define (make-options)
(make-hashtable equal-hash equal?)
)
(define duck-options (make-options))
(define (option-set var val)
(hashtable-set! duck-options var val)
)
(define option-get
(case-lambda
[(var val)
(hashtable-ref duck-options var val)
]
[(var)
(option-get var '())
]))
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Scheme
1
https://gitee.com/evilbinary/duck-compiler.git
[email protected]:evilbinary/duck-compiler.git
evilbinary
duck-compiler
duck-compiler
master

搜索帮助