Help for this page

Select Code to Download


  1. or download this
        use Tcl;
    
        $interp = new Tcl;
        $interp->Eval('puts "Hello world"');
    
  2. or download this
        use Inline Tcl => <<END
            ... your tcl function definitions here
        END
        my $answer = tcl_function(@args);