Re: a "success story for D" ! !!

2015-05-06 Thread d coder via Digitalmars-d
> > > This is great going, Puneet. Congratulations, good luck, and keep us all > posted! -- Andrei > Thanks Andrei. And thanks again to Walter, yourself, Kenji and other developers who together made D a wonderful language.

Re: a "success story for D" ! !!

2015-05-06 Thread d coder via Digitalmars-d
Unlike mainstream software, it requires a lot of effort to get hardware > guys interested in software. > I meant to say "interested in *opensource* software"

Re: a "success story for D" ! !!

2015-05-06 Thread d coder via Digitalmars-d
Greetings > half the site is 404, the github account show little activity and > information pretty sparse. smells kinda dubios.. > I am really sorry for the poor webpage. We are actively working on that front, but progress is slow since we need to give priority to customer projects. We are an un

Re: a "success story for D" ! !!

2015-05-06 Thread d coder via Digitalmars-d
> But, a fair chunk of code. Maybe there's little activity recently because > they consider it done. I haven't committed to the majority of my github > things for months, but I still stand by them. > Greetings I am the lead developer of Vlang. Vlang is still being actively worked on. We are not

Bug with nested static class referencing?

2015-01-18 Thread d coder via Digitalmars-d
Greetings I hit what looks like a probable DMD bug. When I reduced with help from dustmite I get something like this. Can someone tell me if this is a bug or am I doing something illegal? class A { B.BB b; } class B: A { static class BB {} } When I compile I get: test.d(2): Error: no prope

Why this UDP will not compile?

2014-09-27 Thread d coder via Digitalmars-d
DMD wont compile this. I get an error saying: /tmp/test.d(3): Error: need 'this' for 'foo' of type 'int' Failed: ["dmd", "-v", "-o-", "/tmp/test.d", "-I/tmp"] Is this a bug or is it illegal code? // Regards // Cherry class Foo { int foo = 42; @foo int bar; this(int frop) { foo = frop;

Re: Member function pointers

2014-05-27 Thread d coder via Digitalmars-d
https://github.com/D-Programming-Language/dmd/pull/3181 Daniel asked me to use this. And it works. Use something like: union U { void delegate(int) dg; struct { void* ptr; void function(int) funcptr; } } U u; u.dg = dg; u.funcptr = ...; u.ptr = ...; Regards - Puneet

Re: Member function pointers

2014-05-27 Thread d coder via Digitalmars-d
On Mon, Jun 10, 2013 at 10:13 PM, Jacob Carlborg wrote: > On 2013-06-10 18:34, Manu wrote: > >> On 11 June 2013 02:26, Jacob Carlborg mailto:d...@me.com>> >> >> wrote: >> >> On 2013-06-10 17:40, David Nadlinger wrote: >> >> Let me try to summarize it in code: >> >> --- >>