I want to learn Tcl programming, but I`m having trouble with compile source code. I need good compiler tool. Can you help me? What compiler should I use or the best one? Thank you !!!!
|
closed as not constructive by ikinci viking, Basile Starynkevitch, assylias, joran, Graviton Jul 2 '12 at 9:21
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Tcl is a programming language. It has a number of implementations, but the one you are most likely to be able to get hold of is You might also encounter the When asking future questions here about Tcl, it helps a lot if you mention the exact version (as reported by Tcl's In terms of compilers, you don't normally need one. The implementation engine used by |
|||
|
|
|
If you are using linux, you probably have Tcl already installed in your system. Type tclsh in the console and see if it works, or look for Tcl in the software installation tool. If you are using Windows or MacOSX, you can download it from ActiveState here. |
|||
|
|
|
tcl is a scripting language (and, IMHO, not a particularly good one; Ruby, Python, Ocaml, Lua are better in my opinion). Its implementation is usually not compiled (perhaps some experimental implementations might use JIT techniques). In particular, there is no "compilation" step to use Tcl (because you don't need any "compiler" to use -i.e. code some scripts in- Tcl); you just need its interpreter. (You may need a C compiler to build the So you just need to use your editor (e.g. Emacs, Gedit or even Notepad if you are restricted to Windows) to begin coding some Tcl scripts. If you are learning to code, I strongly suggest to learn some better programming languages (e.g. Scheme or Ocaml or Python) before learning Tcl. The lack of modularity in Tcl will bite you quite soon! |
|||||||||
|
