Overview
Artifact ID: | 3ff2511ca1a81cdc32f244241f4a3d42db4342f6 |
---|---|
Page Name: | tcc4tcl |
Date: | 2016-03-20 07:52:47 |
Original User: | rkeene |
Mimetype: | text/x-markdown |
Parent: | 6882d1fc802864e86201ea06e0d9f731dbbcac4c (diff) |
Next | d024e4b8b0b402fffcfd2c08a0859a7f152382a3 |
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