Y
Hacker News
new
|
ask
|
show
|
jobs
by
jim_lawless
444 days ago
A TCL interpreter is packaged with Python in the tkinter library:
import tkinter
tcl=tkinter.Tcl()
tcl.eval('puts "Hello, world!"')
1 comments
7thaccount
443 days ago
I'm aware, but that kind of defeats the point (at least to me). If I want to build out some cute DSL for a project, it would just be with the small tcl interpreter.
link