diff options
| author | Divay Prakash <divayprakash@users.noreply.github.com> | 2019-12-23 23:14:50 +0530 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-23 23:14:50 +0530 | 
| commit | 16dc074e39f5f996639f23f4d6812c211ae5d22d (patch) | |
| tree | 63be0d1a3885201f3d13f1dc00266fb719f304a7 /tcl.html.markdown | |
| parent | ffd1fed725668b48ec8c11cbe419bd1e8d136ae3 (diff) | |
| parent | 1d5f3671ea4bc6d7a70c3026c1ae6857741c50a6 (diff) | |
Merge branch 'master' into master
Diffstat (limited to 'tcl.html.markdown')
| -rw-r--r-- | tcl.html.markdown | 9 | 
1 files changed, 5 insertions, 4 deletions
| diff --git a/tcl.html.markdown b/tcl.html.markdown index 40d9111a..3d23870b 100644 --- a/tcl.html.markdown +++ b/tcl.html.markdown @@ -5,7 +5,7 @@ contributors:  filename: learntcl.tcl  --- -Tcl was created by [John Ousterhout](https://wiki.tcl.tk/John%20Ousterout) as a +Tcl was created by [John Ousterhout](https://wiki.tcl-lang.org/page/John+Ousterhout) as a  reusable scripting language for circuit design tools that he authored.  In 1997 he  was awarded the [ACM Software System  Award](https://en.wikipedia.org/wiki/ACM_Software_System_Award) for Tcl.   Tcl @@ -283,7 +283,7 @@ set c [expr {$a + $b}]  # Since "expr" performs variable substitution on its own, brace the expression  # to prevent Tcl from performing variable substitution first.  See -# "http://wiki.tcl.tk/Brace%20your%20#%20expr-essions" for details. +# "https://wiki.tcl-lang.org/page/Brace+your+expr-essions" for details.  # "expr" understands variable and script substitution: @@ -328,6 +328,7 @@ proc greet {greeting name} {  # the third argument to "proc", is a string.  The previous command  # can be rewritten using no braces:  proc greet greeting\ name return\ \"\$greeting,\ \$name!\" +# " @@ -580,8 +581,8 @@ a  ## Reference -[Official Tcl Documentation](http://www.tcl.tk/man/tcl/) +[Official Tcl Documentation](https://www.tcl-lang.org) -[Tcl Wiki](http://wiki.tcl.tk) +[Tcl Wiki](https://wiki.tcl-lang.org)  [Tcl Subreddit](http://www.reddit.com/r/Tcl) | 
