Re: Programming a Game in D? :D

2014-08-03 Thread Colden Cullen via Digitalmars-d-learn
I'm just gonna leave this here: https://github.com/Circular-Studios/Dash I should note that Dash is extremely not 1.0, but we're definitely close. Expect some API changes, though.

Re: How to set JSON_TYPE in 2.0.65

2014-03-31 Thread Colden Cullen
On Monday, 31 March 2014 at 19:05:11 UTC, Matt Soucy wrote: On 03/31/2014 02:59 PM, nrgyzer wrote: Hi guys, I updated my dmd version from 2.0.63 to 2.0.65 and having some trouble with my JSON-definitions. The code below worked in 2.0.63 but not in 2.0.65: JSONValue oJson = JSONValue();

Usage of Shared

2014-02-07 Thread Colden Cullen
Hi all, I've been trying to learn more about how the shared qualifier works, and so far I haven't been able to find much. I've read the Migrating to Shared article, as well as the shared section in Attributes, but neither really give a good explanation on the details of what should be shared

Re: package.d imports

2014-01-17 Thread Colden Cullen
On Thursday, 16 January 2014 at 15:46:01 UTC, Lemonfiend wrote: The following behavior seems odd to me. Could anyone explain why it works as it does? (Does package.d have a page on dlang.org?) --- main.d module main; void main() { test1(); test2(); } void test1() {

Re: Runtime.unloadLibrary does not return

2014-01-03 Thread Colden Cullen
On Saturday, 3 November 2012 at 19:36:14 UTC, cal wrote: Following the D win32 dll example (http://dlang.org/dll.html), I created a d dll with a simple exported function, which i then dynamically load and call (just like the example). This works fine, however Runtime.unloadLibrary does not

Re: Runtime.unloadLibrary does not return

2014-01-03 Thread Colden Cullen
On Friday, 3 January 2014 at 21:58:07 UTC, cal wrote: On Friday, 3 January 2014 at 19:37:04 UTC, Colden Cullen wrote: I'm using 2.064.2, and I'm having a very similar issue. For me, the program doesn't crash until after my main has finished executing. Does anyone have any idea what might