Changes To tcc4tcl

Changes to "tcc4tcl" between 2014-06-13 03:18:23 and 2014-06-16 00:50:01

1
2
3
4
5
6
7
8
9
10
11
12
13
14

15
16
17
18
19
20
21
1
2
3
4
5
6
7
8
9
10
11
12
13

14
15
16
17
18
19
20
21













-
+







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/)
  1. Version 0.18: [Source](http://rkeene.org/devel/tcc4tcl/tcc4tcl-0.18.tar.gz), [Binaries](http://teapot.rkeene.org/entity/name/tcc4tcl/ver/0.18/)

Examples
--------
  1.  Basic example:<br>
```package require tcc4tcl```<br>
```::tcc4tcl::cproc test {int i} int { return (i+42); }```<br>
```puts [test 1]```