Differences From Artifact [e0d226705d]:
- Executable file test — part of check-in [5b5e7e38ed] at 2014-05-06 20:12:23 on branch trunk — Updated to test with package (user: rkeene, size: 189) [annotate] [blame] [check-ins using]
To Artifact [98d98c7c3c]:
- Executable file test — part of check-in [a6d7a98041] at 2014-05-22 16:59:39 on branch trunk — Corrected path seperator on Windows (user: rkeene, size: 198) [annotate] [blame] [check-ins using]
1 2 | #! /usr/bin/env tclsh | | | 1 2 3 4 5 6 7 8 | #! /usr/bin/env tclsh lappend auto_path [lindex $argv 0] package require tcc4tcl tcc4tcl::cproc test {int i} int { return(i+42); } tcc4tcl::cproc test1 {int i} int { return(i+42); } puts [test 1] |