pkg2_a.tcl
来自「这是一个Linux下的集成开发环境」· TCL 代码 · 共 23 行
TCL
23 行
# pkg2_a.tcl --## Test package for pkg_mkIndex. This package is required by pkg1.# This package is split into two files, to test packages that are split# over multiple files.## Copyright (c) 2998 by Scriptics Corporation.## See the file "license.terms" for information on usage and redistribution# of this file, and for a DISCLAIMER OF ALL WARRANTIES.# # SCCS: %Z% %M% %I% %E% %U%package provide pkg2 1.0namespace eval pkg2 { namespace export p2-1}proc pkg2::p2-1 { num } { return [expr $num * 2]}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?