gperl icon indicating copy to clipboard operation
gperl copied to clipboard

fastest perl like language

Results 3 gperl issues
Sort by recently updated
recently updated
newest added

I tried to run gperl and got some segmentation faults. I wonder if these are adequate patches, but it might give you some information.

I'm getting the following errors while trying to compile on Linux (tried with GCC 4.6.1 and 4.8.2): gen_vm.cpp:1054:2: error: 'jit_compiler' was not declared in this scope gen_vm.cpp:1109:2: error: 'jit_compiler' was...

The following code crashes gperl: ``` perl sub f00 { my $n = shift; return $n + 1; } sub f01 { my $n = shift; return f00($n) + 1;}...