I found several basic tcl syntax on the web but they are not working on my computer!!
----------------------------
proc foo {a b} {puts "$a $b"}
foo a b
----------------------------
->prints nothing
----------------------------
doc_return 200 "text/html" "Hello"
doc_return 200 "text/html" " World"
----------------------------
->this prints only "Hello"
What is wrong???
----------------------------
proc foo {a b} {puts "$a $b"}
foo a b
----------------------------
->prints nothing
----------------------------
doc_return 200 "text/html" "Hello"
doc_return 200 "text/html" " World"
----------------------------
->this prints only "Hello"
What is wrong???