D 2014-06-13T03:18:23.561 L tcc4tcl N text/x-markdown P 598d91976d764e1a4420babb229cf53e443ac57b U rkeene W 667 tcc4tcl ======= Introduction ------------ tcc4tcl (Tiny C Compiler for Tcl) is a [Tcl](http://www.tcl.tk/) extension that provides an interface to [TCC](http://bellard.org/tcc/). It is a fork of [tcctcl](https://code.google.com/p/tcltcc/) by Mark Janssen. It is licensed under the terms of the LGPL v2.1 (or later). Download -------- 1. Version 0.17: [Source](http://rkeene.org/devel/tcc4tcl/tcc4tcl-0.17.tar.gz), [Binaries](http://teapot.rkeene.org/entity/name/tcc4tcl/ver/0.17/) Examples -------- 1. Basic example:
```package require tcc4tcl```
```::tcc4tcl::cproc test {int i} int { return (i+42); }```
```puts [test 1]``` Z 707b1249e71842d7d6dd16568a720200