Diff

Differences From Artifact [c72233bf30]:

To Artifact [e0d226705d]:


1
2

3

4
5
6
#! /usr/bin/env tclsh


source tcc4tcl.tcl

tcc4tcl::cproc test {int i} int { return(i+42); }
tcc4tcl::cproc test1 {int i} int { return(i+42); }
puts [test 1]


>
|
>



1
2
3
4
5
6
7
8
#! /usr/bin/env tclsh

lappend auto_path __TMP__
package require tcc4tcl

tcc4tcl::cproc test {int i} int { return(i+42); }
tcc4tcl::cproc test1 {int i} int { return(i+42); }
puts [test 1]