Can anyone provide me with less than five lines of code that I can save as .hs and run as a haskell program and see the magic happen? The internet is so complicated sometimes.
From http://www.haskell.org/haskellwiki/Haskell_in_5_steps The internet isn't so bad! |
|||
|
This answer's more focused on "seeing the magic happen":
|
|||
|
|
|
Someone should have mentioned
$ cat interact.hs | runhaskell interact.hs esrever tcaretni = niam and thus with
$ cat interact.hs | runhaskell interact.hs words) . reverse . (unwords interact = main or with an import
$ echo "hello" | runhaskell interact.hs h e l l o or, now compiling:
$ ghc --make -O2 interact.hs -o charcount $ echo "hello world" | ./charcount 12 In which case it makes sense to start doing a bit of poor man's benchmarking: $ time cat /usr/share/dict/words | ./charcount 2486813 real 0m0.096s |
||||
|
|
|
|
|||
|
|
|
How about all the Fibonacci numbers? Well, you can just print something like 100 of them for brevity.. ;)
|
|||
|
|
|
You could go cheery. Here
|
|||
|
|
|
This one's a bit dense, and definitely not the simplest, but it does use the infinite list
The |
|||
|
|
Hamming numbers are numbers that don't have any prime factors larger than 5. I.e. they have the form 2^i*3^j*5^k. The first 20 of them are:
The 500000th one is:
The program that printed the 500000th one (after a brief moment of computation) is:
That's longer than the 5 lines of code you wanted. Of course it could be golfed, but I'd rather write it naturally and see how many lines it takes you to compute that number in any other language, with reasonable execution time. |
|||
|
|
|
Print every number:
|
|||||
|

echo "main = return ()" | runhaskell, since you asked for the "most simple" program. :-) – David Nov 15 '12 at 17:53