Index: README =================================================================== RCS file: README diff -N README --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ README 26 Dec 2003 01:20:12 -0000 @@ -0,0 +1,22 @@ + TclPro ByteCode Loader + ---------------------- + +The tbcload package evaluates the obfuscated bytecode produced by the compiler +package. + +It is loaded with + + package require tbcload + +which defines two new commands 'bcproc' and 'bceval' in the tbcload:: namespace. + +tbcload is automatically loaded when sourcing bytecompiled files, as they have +the following format: + + if {[catch {package require tbcload 1.0} err] == 1} { + error "The TclPro ByteCode Loader is not available" + } + tbcload::bceval { + TclPro ByteCode 1 0 1.0 8.0 + <....bytecompiled code...> + }