Skip to main content



Read Perl’s symbol table programmatically

Changes for 0.12

  • Update license in Makefile.PL. (Thank you, @mavit!)


Future-based web+HTTP handling

Changes for 0.001 - 2024-04-24T00:49:13+08:00

  • Initial version for websocket + per-message compression support


Perl implementation for the Prague Markup Language (PML).

Changes for 2.26 - 2024-04-23T17:31:17Z

  • Properly fix saving relative paths to resource files.




I understand that many disagree with this statement, but it really makes it easier to build distributions for people who not monks. Wish the documentation was more detailed

submitted by /u/ReplacementSlight413
[link] [comments]






My environment is perl/5.18.2 on CentOs 7

I'm trying to use a SWIG generated module in perl, which has a c plus plus backend. The backend.cpp sets an environment variable, $MY_ENV_VAR =1

But when I try to access this in perl, using $ENV{MY_ENV_VAR} this is undef.

However doing something like print echo $MY_ENV_VAR works

So the variable is set in the process, but it's not reflected automatically since nothing updates the $ENV data structure.

I'm assuming it may work using some getEnv like mechanism, but is there a way to reset/ refresh the $ENV that it rebuilds itself from the current environment?

submitted by /u/sarcasmwala
[link] [comments]