Overview
Artifact ID: | 4c29451edb58157f7bf2bdea7f5ab3a595c6f296 |
---|---|
Page Name: | tcc4tcl |
Date: | 2016-03-28 14:54:46 |
Original User: | rkeene |
Mimetype: | text/x-markdown |
Parent: | d024e4b8b0b402fffcfd2c08a0859a7f152382a3 (diff) |
Next | a7f21eedcf09323f902873d99dae828025dfe89f |
Content
tcc4tcl
Introduction
tcc4tcl (Tiny C Compiler for Tcl) is a Tcl extension that provides an interface to TCC.
It is a fork of tcctcl by Mark Janssen.
It is licensed under the terms of the LGPL v2.1 (or later).
Download
Examples
- Basic example:
package require tcc4tcl
::tcc4tcl::cproc test {int i} int { return (i+42); }
puts [test 1]
- More Examples