in reply to Switching from lang X to Y
If you are looking for an alternative to Perl, take a look at Julia. It has -e, a repl and will run (interpret) code immediate; or you can compile it for near C speed, and it calls C libraries natively.
Perl still has the edge for one-offs and prototyping because of things like -s -anle, while(<>) etc; but for parallel programming and high speed work, Julia is very nice. (1-based arrays take getting used to!)
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Switching from lang X to Y
by stevieb (Canon) on Mar 20, 2017 at 14:00 UTC | |
by BrowserUk (Patriarch) on Mar 20, 2017 at 17:27 UTC |