I'm trying to source some external tcl libraries inside my perl script which uses Inline::Tcl so that I have access to the tcl functions.
I get the following error no matter what name or path I use:
"Couldn't parse your Tcl code."
The library file is used by other scripts that work well so I assume there is nothing wrong with it. Is there a better way to debug this or is my syntax incorrect?
#!/usr/bin/perl
use Inline Tcl => <<END;
source "smb.tcl"
END
$result = SmartbitsSocketLink();