Overview
Artifact ID: | 681a460f64f3cd376f3c5cf51f7a22df607b0922 |
---|---|
Page Name: | tcc4tcl |
Date: | 2014-05-02 18:09:58 |
Original User: | rkeene |
Mimetype: | text/x-markdown |
Parent: | 224fdd4da1982cd64999ddc428ef8a851ce717ad (diff) |
Next | f0af6909dfe0e9a90a7cd55f30c44b26276029cb |
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).
Examples
- Basic example:
package require tcc4tcl
::tcc4tcl::cproc test {int i} int { return (i+42); }
puts [test 1]