Update of "tcc4tcl"
Overview

Artifact ID: 598d91976d764e1a4420babb229cf53e443ac57b
Page Name:tcc4tcl
Date: 2014-05-19 18:54:35
Original User: rkeene
Mimetype:text/x-markdown
Parent: 366fa7da518789641d4ceea8881b67593ff319f1 (diff)
Next add42c18d8b37b498164d4f26e6a3ff1c3d1356f
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

  1. Version 0.11: Source, Binaries

Examples

  1. Basic example:
    package require tcc4tcl

    ::tcc4tcl::cproc test {int i} int { return (i+42); }

    puts [test 1]