No description
Find a file
2024-05-13 22:25:31 -04:00
examples change name 2024-04-08 00:24:40 -04:00
src fix dll search patterns 2024-05-13 22:25:12 -04:00
tests change name 2024-04-08 00:24:40 -04:00
.gitignore update gitignore 2024-05-13 22:25:04 -04:00
LICENSE init 2024-04-08 00:24:13 -04:00
nimtcl.nimble Update nimtcl.nimble 2024-04-15 22:06:43 -04:00
README.md repo name change 2024-04-15 22:01:06 -04:00

nimtcl

Low level bindings for Tcl & Tk for Nim

installation

You may install using nimble

nimble install https://github.com/neroist/nimtcl

However, this library depends on a Tcl 8.6 installation. There are many ways to install Tcl; these bindings were created from the binaries and header files found here: https://gitlab.com/teclabat/tcltk/-/packages. However, you may install from ActiveTcl instead. This may be easier for windows users.

Linux users just need to install the needed packages from their package manager. For example, on a Debian-based/Ubuntu-based system, you can run

sudo apt-get install tcl

to install Tcl.

Note than some components, even including Tk, man pages and C libraries may be separate packages and installed in a similar manner.

Usage

Please see the examples on how to use this library.

For documentation, you may look at the Tcl/Tk C API documenation here (or here & here) or the tutorials here.