1 Star 0 Fork 0

liangkangnan/jimtcl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
bootstrap.tcl 348 Bytes
一键复制 编辑 原始数据 按行查看 历史
# Minimal support for package require
proc package {cmd args} {
if {$cmd eq "require"} {
foreach path $::auto_path {
lassign $args pkg
set pkgpath $path/$pkg.tcl
if {$path eq "."} {
set pkgpath $pkg.tcl
}
if {[file exists $pkgpath]} {
tailcall uplevel #0 [list source $pkgpath]
}
}
}
}
set tcl_platform(bootstrap) 1
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liangkangnan/jimtcl.git
git@gitee.com:liangkangnan/jimtcl.git
liangkangnan
jimtcl
jimtcl
master

搜索帮助