Reputation: 67
I wrote script in tcl and want to protect it. Is there any way to compile the script so no one could see the code inside?
What is the conventional way to protect tcl script?
Upvotes: 0
Views: 922
Reputation: 137607
There's a few ways, depending on the level of sophistication of protection you want:
foobar.tcl
to foobar.private
).Upvotes: 1