Re: Hello .NET, D Here Calling

2008-12-23 Thread Mosfet
bearophile wrote: Chad J Wrote: This is exactly where I'm coming from. I used to use C# properties a lot. They are super effective. In C# you can use for example: class TimePeriod { private double seconds; public double Hours { get { return seconds / 3600; } set { s

Re: LDC Windows exception handling

2008-12-15 Thread Mosfet
Christian Kamm wrote: Speaking of LDC, any chance that the exception handling on Win32 gets fixed in the near future? No, unfortunately. It's a problem with LLVM only supporting Dwarf2 exception handling. I'm pretty sure it'd work if we used ELF for the object files and GCC for linking, but