Changes To Examples

Changes to "Examples" between 2014-06-24 04:28:41 and 2014-11-30 19:32:57

1
2
3
4
5
6
7
8
9
10

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










+







tcc4tcl Examples
================

Simple Example
--------------
    #! /usr/bin/env tclsh
    
    package require tcc4tcl
    set handle [tcc4tcl::new]
    $handle cproc add {int a int b} long { return(a+b); }
    $handle go
    puts [add 1 2]

Example 1: mkdir
----------------
    #! /usr/bin/env tclsh
    
    package require tcc4tcl