Re: Experimental win32 OMF linker written in D now on github

2014-03-24 Thread Asman01
On Monday, 24 March 2014 at 22:30:45 UTC, Nick Sabalausky wrote: On 3/23/2014 4:33 PM, Daniel Murphy wrote: So a couple of years ago I had too much free time and wrote a linker. It's now on github: https://github.com/yebblies/ylink Nifty! I love this Pro: - Usually produces working

Re: D/Objective-C 64bit

2014-03-11 Thread Asman01
On Tuesday, 11 March 2014 at 18:23:08 UTC, Jacob Carlborg wrote: I just wanted to let everyone know that I have implemented D/Objective-C for 64bit. Everything that worked for 32bit should work, except for exceptions, which are not implemented yet. Objective-C on 64bit uses the modern

Re: early alpha of D REPL

2014-02-13 Thread Asman01
On Tuesday, 11 February 2014 at 04:46:41 UTC, Martin Nowak wrote: Barely running but already fun and a little useful. Example: D import std.algorithm, std.array, std.file; = std D auto name(T)(T t) { | return t.name; | } = name D dirEntries(., SpanMode.depth).map!name.join(, ) =