fix: Re-initializing after I destroyed the original repository.

This commit is contained in:
James Wells 2021-02-25 17:46:40 -08:00
parent 5863999e8c
commit 8b54fc32c5
Signed by: jwells
GPG key ID: 73196D10B8E65666
20 changed files with 1359 additions and 0 deletions

8
examples/add-two.tcl Normal file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env tcl
#
#
set val1 1
set val2 2
set result [expr {val1 + val2}]
puts result