#+title: Tcl - tags :: [[file:20210307152738-programming_languages.org][programming languages]] Tcl is a programming language primarily used for scripting. Its website calls it "the industry's best kept secret." Tcl, unlike [[file:20210420173545-bash.org][Bash]], is string-based, in the same sense that [[file:20200604222651-lisp.org][Lisp]] is list-based. #+begin_src tcl set cmd "echo" set arg "hello world" exec $cmd $arg #+end_src #+RESULTS: : hello world * Resources - [[https://learnxinyminutes.com/docs/tcl/][Learn Tcl in Y Minutes]]