in reply to Re^6: Run Perl 5 in the Browser!
in thread Run Perl 5 in the Browser!
I think the fundamental problem is that Perl has too many hooks (operation overloading, constant overloading, variable type overloading, custom opcodes, etc) that prevent optimizations without changing the language. We can't even guarantee that 2 returns a number (e.g. when using use bigint;), so we're stuck with fat opcodes that must be able to accept any kind of value.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^8: Run Perl 5 in the Browser!
by chromatic (Archbishop) on Aug 23, 2018 at 17:59 UTC | |
by ikegami (Patriarch) on Aug 23, 2018 at 20:42 UTC | |
|
Re^8: Run Perl 5 in the Browser!
by LanX (Saint) on Aug 23, 2018 at 04:26 UTC | |
by ikegami (Patriarch) on Aug 23, 2018 at 20:39 UTC | |
by LanX (Saint) on Aug 24, 2018 at 12:49 UTC |