Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
one more debug statement
  • Loading branch information
pmurias committed Oct 2, 2011
1 parent 9443cf8 commit 8dbcaa8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/Perl5Interpreter.cs
Expand Up @@ -59,7 +59,9 @@ int argument_n
Dispose();
}
public Variable Eval(string code) {
return SVToVariable(EvalPerl5(code));
IntPtr sv = EvalPerl5(code);
Console.WriteLine("# wrapping/converting SV");
return SVToVariable(sv);
}
}

Expand Down

0 comments on commit 8dbcaa8

Please sign in to comment.