[Haskell-cafe] lines of code metrics

2008-08-19 Thread Greg Fitzgerald
Does anyone know of a good case study comparing a project written in C versus one written in Haskell? I'm mostly looking for a comparison of lines of code, but any other metric, such as time to market and code quality metrics could also be ___ Haskell-Ca

[Haskell-cafe] Lines of code metrics

2008-08-21 Thread Dimitry Golubovsky
Hi, Greg Fitzgerald wrote: >Does anyone know of a good case study comparing a project written in C >versus one written in Haskell? I'm mostly looking for a comparison of lines >of code, but any other metric, such as time to market and code quality >metrics could also be Just curious, has anybod

Re: [Haskell-cafe] lines of code metrics

2008-08-19 Thread Jason Dagit
2008/8/19 Greg Fitzgerald <[EMAIL PROTECTED]>: > Does anyone know of a good case study comparing a project written in C > versus one written in Haskell? I'm mostly looking for a comparison of lines > of code, but any other metric, such as time to market and code quality > metrics could also be Yo

Re: [Haskell-cafe] lines of code metrics

2008-08-19 Thread Aaron Tomb
On Aug 19, 2008, at 9:12 AM, Greg Fitzgerald wrote: Does anyone know of a good case study comparing a project written in C versus one written in Haskell? I'm mostly looking for a comparison of lines of code, but any other metric, such as time to market and code quality metrics could also

Re: [Haskell-cafe] lines of code metrics

2008-08-19 Thread Bulat Ziganshin
Hello Greg, Tuesday, August 19, 2008, 8:12:00 PM, you wrote: > Does anyone know of a good case study comparing a project written > in C versus one written in Haskell?  I'm mostly looking for a > comparison of lines of code, but any other metric, such as time to > market and code quality metrics c

Re: [Haskell-cafe] lines of code metrics

2008-08-20 Thread Malcolm Wallace
"Greg Fitzgerald" <[EMAIL PROTECTED]> wrote: > Does anyone know of a good case study comparing a project written in C > versus one written in Haskell? I'm mostly looking for a comparison of > lines of code, Some of the "Experience Report" category of paper at ICFP 2007 and 2008 might have the ki

Re: [Haskell-cafe] lines of code metrics

2008-08-20 Thread Richard Kelsall
Greg Fitzgerald wrote: Does anyone know of a good case study comparing a project written in C versus one written in Haskell? I'm mostly looking for a comparison of lines of code, but any other metric, such as time to market and code quality metrics could also be Maybe this one is relevant:

Re: [Haskell-cafe] lines of code metrics

2008-08-20 Thread Greg Fitzgerald
On Aug 19, 2008, at 9:12 AM, Greg Fitzgerald wrote: > > Does anyone know of a good case study comparing a project written in C >> versus one written in Haskell? I'm mostly looking for a comparison of lines >> of code, but any other metric, such as time to market and code quality >> metrics could

Re: [Haskell-cafe] lines of code metrics

2008-08-20 Thread Don Stewart
garious: >On Aug 19, 2008, at 9:12 AM, Greg Fitzgerald wrote: > >Does anyone know of a good case study comparing a project written in C >versus one written in Haskell? I'm mostly looking for a comparison of >lines of code, but any other metric, such as time to market a

Re: [Haskell-cafe] lines of code metrics

2008-08-20 Thread Greg Fitzgerald
>> Greg wrote: >>Thank you all for your help! These references are a great help for >>pushing Haskell at work. > > Don wrote: > I've also set up the "Who's using Haskell" section on haskell.org's > front page -- let me know what you think Great, thanks! I added Qualcomm. -Greg

Re: [Haskell-cafe] lines of code metrics

2008-08-20 Thread Richard A. O'Keefe
Speaking of GdH, the web page http://www.macs.hw.ac.uk/~dsg/gdh/ was last updated in June 2007, it says, but the binary snapshot (Linux only) is February 2002, and the "installing GdH" part says it's built using the GHC 5.00 sources. Is GdH dead, or is there a more up to date version lurking some

Re: [Haskell-cafe] lines of code metrics

2008-08-20 Thread Don Stewart
garious: >>> Greg wrote: >>>Thank you all for your help! These references are a great help for >>>pushing Haskell at work. >> >> Don wrote: >> I've also set up the "Who's using Haskell" section on [1]haskell.org's >> front page -- let me know what you think > >

Re: [Haskell-cafe] Lines of code metrics

2008-08-21 Thread Johannes Waldmann
Just curious, has anybody tried to apply Halstead's code metrics [...] As I understand it, Halstead's metric punishes the re-use of "operands" (= variables). This is what happens if you start your program with a bunch of global definitions (e.g. int i,j,k,l because you might want them as loo

Re: [Haskell-cafe] Lines of code metrics

2008-08-24 Thread Henning Thielemann
On Thu, 21 Aug 2008, Johannes Waldmann wrote: NB: My private set of Haskell metrics: * lines of code (per declaration) (should be <= 5) * number of declarations (per module) (should be <= 5 as well :-) * number of usages of Int, String, List, IO (should be <= 0 :-) :-) * number of usages of u