vote up 4 vote down star
3

Does anyone know of a quick-starting Haskell interpreter that would be suitable for use in writing shell scripts? Running 'hello world' using Hugs took 400ms on my old laptop and takes 300ms on my current Thinkpad X300. That's too slow for instantaneous response. Times with GHCi are similar.

Functional languages don't have to be slow: both Objective Caml and Moscow ML run hello world in 1ms or less.

Clarification: I am a heavy user of GHC and I know how to use GHCi. I know all about compiling to get things fast. Parsing costs should be completely irrelevant: if ML and OCaml can start 300x faster than GHCi, then there is room for improvement.

I am looking for

  • The convenience of scripting: one source file, no binary code, same code runs on all platforms
  • Performance comparable to other interpreters, including fast startup and execution for a simple program like

    module Main where
    main = print 33
    

I am not looking for compiled performance for more serious programs. The whole point is to see if Haskell can be useful for scripting.

flag

63% accept rate
How often are you spawning new Haskell scripts? Is there something you can do about lessening that figure, first? – Porges Apr 5 at 11:17
Not at all, except for testing. My whole point is to be able to write scripts in something better then /bin/sh and more typechecked than Lua. So I want to be doing it a lot! – Norman Ramsey Apr 5 at 22:48

3 Answers

vote up 3 vote down check

Using ghc -e is pretty much equivalent to invoking ghci. I believe that GHC's runhaskell compiles the code to a temporary executable before running it, as opposed to interpreting it like ghc -e/ghci, but I'm not 100% certain.

$ time echo 'Hello, world!'
Hello, world!

real    0m0.021s
user    0m0.000s
sys     0m0.000s
$ time ghc -e 'putStrLn "Hello, world!"'
Hello, world!

real    0m0.401s
user    0m0.031s
sys     0m0.015s
$ echo 'main = putStrLn "Hello, world!"' > hw.hs
$ time runhaskell hw.hs
Hello, world!

real    0m0.335s
user    0m0.015s
sys     0m0.015s
$ time ghc --make hw
[1 of 1] Compiling Main             ( hw.hs, hw.o )
Linking hw ...

real    0m0.855s
user    0m0.015s
sys     0m0.015s
$ time ./hw
Hello, world!

real    0m0.037s
user    0m0.015s
sys     0m0.000s

How hard is it to simply compile all your "scripts" before running them?

Edit

Ah, providing binaries for multiple architectures is a pain indeed. I've gone down that road before, and it's not much fun...

Sadly, I don't think it's possible to make any Haskell compiler's startup overhead any better. The language's declarative nature means that it's necessary to read the entire program first even before trying to typecheck anything, nevermind execution, and then you either suffer the cost of strictness analysis or unnecessary laziness and thunking.

The popular 'scripting' languages (shell, Perl, Python, etc.) and the ML-based languages require only a single pass... well okay, ML requires a static typecheck pass and Perl has this amusing 5-pass scheme (with two of them running in reverse); either way, being procedural means that the compiler/interpreter has a lot easier of a job assembling the bits of the program together.

In short, I don't think it's possible to get much better than this. I haven't tested to see if Hugs or GHCi has a faster startup, but any difference there is still faaar away from non-Haskell languages.

link|flag
I use three different computing platforms: x86, amd64, and sparc. The inconvience of compiling code for all three is significant. I write a lot of scripts in Lua and ksh, and I'd rather use Haskell. But not if I have to compile everything. – Norman Ramsey Apr 4 at 0:54
P.S. Your timings show my trouble exactly, except my 'echo' is a lot faster than yours... odd. – Norman Ramsey Apr 4 at 0:55
This was originally timed under Cygwin, where (because Windows is braindead) process creation is friggin' expensive. Yeah, I don't see an easy solution to (lightweight + binary portable) Haskell "shell" scripts... sorry. – ephemient Apr 4 at 3:24
vote up 5 vote down

If you are really concerned with speed you are going to be hampered by re-parsing the code for every launch. Haskell doesn't need to be run from an interpreter, compile it with GCH and you should get excellent performance.

link|flag
Parsing costs are never completely irrelevant, and neither is the implicit richness of the expected runtime environment. Maybe ML and OCaml have fewer 'load by default' libraries. $ time python -c "print 33" is plenty fast! And I have no doubt there is room for improvement. – Joel Apr 4 at 2:53
vote up 3 vote down

You have two parts to this question:

  • you care about performance
  • you want scripting

If you care about performance, the only serious option is GHC, which is very very fast: http://shootout.alioth.debian.org/u64q/benchmark.php?test=all&lang=all

If you want something light for Unix scripting, I'd use GHCi. It is about 30x faster than Hugs, but also supports all the libraries on hackage.

So install GHC now (and get GHCi for free).

link|flag
I don't care so much about overall performance as I do about startup costs. – Norman Ramsey Apr 4 at 0:52
"Very very fast"? Let's not get carried away, Don---I've worked on GHC's back end, and I know where those particular bodies are buried :-) – Norman Ramsey Apr 5 at 22:49
Hey Norman. I really don't think there's much alternative to compiling scripts (if they run often), or using the #!/usr/bin/runhaskell syntax if they're run rarely. – dons Apr 7 at 6:03
That said, hugs starts up faster. It's just not very useful, imo. – dons Apr 7 at 6:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.