What is the best language
1
Name:
Anonymous
2009-08-17 9:32
to write fibs?
2
Name:
Anonymous
2009-08-17 9:33
The Algorithmic Language Scheme
3
Name:
Anonymous
2009-08-17 9:38
NOT ME !
4
Name:
Anonymous
2009-08-17 9:49
Haskell. /thread
5
Name:
Anonymous
2009-08-17 11:30
6
Name:
Anonymous
2009-08-17 12:23
7
Name:
Anonymous
2009-08-17 12:25
>>6
Special purpose Hardware is faster.
8
Name:
Anonymous
2009-08-17 12:31
>>7
Enterprise Fibs Machines.
9
Name:
Anonymous
2009-08-17 12:58
>>7
A cached list of results is faster for most usage scenarii.
10
Name:
Anonymous
2009-08-17 13:01
>>9
"Scenario" is not a Latin-based word--and even if it were, you're using the wrong declension--so the correct plural is "scenarios".
11
Name:
Anonymous
2009-08-17 13:55
ITYM scenarioes .
12
Name:
Anonymous
2009-08-17 15:16
>>1
I believe CL is a very good candidate, I've written at least a dozen different fibs implementations, some with very nice performance characteristics and pleasing aesthetics. There are truly countless ways to write elegant fibs in it.
13
Name:
Anonymous
2009-08-17 17:09
>>1
U MENA F I B O N A C C I B U T T S O R T ?
14
Name:
Anonymous
2009-08-17 17:19
15
Name:
Anonymous
2009-08-17 19:40
16
Name:
Anonymous
2009-08-17 19:44
17
Name:
Anonymous
2009-08-17 19:49
Javascript
18
Name:
Anonymous
2009-08-18 10:44
Fibs++0x
19
Name:
Anonymous
2009-08-18 10:54
I use Java. But then again I'm not sure you would want to follow my path as I make money writting software and live independently
20
Name:
Anonymous
2009-08-18 11:29
>>18
Pronounced: Fibblesox.
21
Name:
Anonymous
2009-08-18 11:32
I use Lisp. But then again I'm not sure you would want to follow my path as I attained satori readding SICP and live in a constant state of computational rapture
22
Name:
Anonymous
2009-08-18 15:26
(sort (list sepples lua lisp see haskell factor FIOC) (lambda(x) (best? x fibs)))
23
Name:
Anonymous
2009-08-18 15:30
a,b = 0,1
while 1:
print b,
a,b = b,a+b
24
Name:
Anonymous
2009-08-18 16:03
U MENA HASKAL
fibs = fix(scanl(+)0.(1:))
25
Name:
Anonymous
2009-08-18 16:21
fibs = 0:scanl(+)1 fibs
26
Name:
Anonymous
2009-08-18 18:15
fibs=0:scanl(+)1 fibs
27
Name:
Anonymous
2010-12-28 5:23