Clovertech
› Clovertech Forums › Read Only Archives › Cloverleaf › Tcl Library › List of Tcl reserved variables
Does anyone have a list of the reserved variable names that cannot or should not be used in Tcl?
Also, does anyone have a list of the pre-defined engine variables like XlateInVals, XlateOutVals, etc?
Thanks,
See: http://www.xilinx.com/itp/xilinx10/isehelp/ite_r_tcl_reserved_words.htm
For reseved words in Tcl
As for others if you are worried about bumping heads you can always use the
info vars command to see what is already in use. It will vary depending on which interpreter you are in
As mentioned above, just type “info vars” or “info globals” at a TCL prompt to see which variables are in use.
XlateInVals and XlateOutVals are only valued if you are writing TCL code in the code fragment interface (i.e. within an Xlate).
Thanks guys!