Overview
Artifact ID: | a81e36fcd55d72405adaee5e121bfc036b25fae4 |
---|---|
Page Name: | tcc4tcl |
Date: | 2014-06-22 01:16:33 |
Original User: | rkeene |
Mimetype: | text/x-markdown |
Parent: | 4ae5fd24ba1748683f38ff9973ae2b393159d9d5 (diff) |
Next | b8b0260c623d830415b5a1b9ce334214d059cf3d |
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]