in reply to Re^2: Perl embedding woes: undefined symbols
in thread Perl embedding woes: undefined symbols

So they have to have Perl installed locally, then. If so, why not just run Perl as a child?
  • Comment on Re^3: Perl embedding woes: undefined symbols

Replies are listed 'Best First'.
Re^4: Perl embedding woes: undefined symbols
by robhoelz (Acolyte) on Apr 29, 2010 at 22:57 UTC
    Eventually, I'd like for the two environments to be able to exchange data easily. For example, from Lua:
    require 'perl'
    local inc = perl['@INC']
    for _, v in ipairs(inc) do
      print(v)
    end