vote up 1 vote down star

There must be an easy way to do this, but I can't find it.

What command can I run within Tcl to get it to introspect and report the version of itself that is running?

flag

3 Answers

vote up 5 vote down check
info patchlevel

which is the value of tcl_patchlevel

see tcl tutorial

link|flag
vote up 0 vote down

in addition to other options, you can use:

puts $tcl_version

This has the advantage of working for comically old versions of tcl.

link|flag
1  
This only gives you the major version (8.5) but not the full version (8.5.7) – Carlos Tasada Sep 16 at 14:46
vote up 0 vote down

You only need to

puts $tcl_patchLevel
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.