D for web?

2014-01-14 Thread ProgrammingGhost
Is it possible to build websites using D? I know the website is written in D but there isn't a library for web that handles http request, parsing the page, query string etc?

Re: What does func!thing mean?

2013-11-08 Thread ProgrammingGhost
On Friday, 8 November 2013 at 06:25:15 UTC, qznc wrote: On Friday, 8 November 2013 at 05:46:29 UTC, ProgrammingGhost wrote: I'm a D noob. ".map!(a => a.length)" seems like the lambda is passed into the template. ".map!split" just confuses me. What is split? I tho

What does func!thing mean?

2013-11-07 Thread ProgrammingGhost
I'm a D noob. ".map!(a => a.length)" seems like the lambda is passed into the template. ".map!split" just confuses me. What is split? I thought only types can be after "!". I would guess split is a standard function but then shouldn't it be map!(split)? const wordCount = file.byLine()