Learn D in x minutes
simendsjo via Digitalmars-d
digitalmars-d at puremagic.com
Wed May 14 01:28:08 PDT 2014
On 05/14/2014 10:11 AM, Martin Nowak wrote:
> On Wednesday, 14 May 2014 at 07:36:57 UTC, Joseph Rushton Wakeling wrote:
>> On Wednesday, 14 May 2014 at 07:04:24 UTC, w0rp wrote:
>>> I'm unsure about the "learn x in y minutes" tutorials, but I did
>>> however think this was very neat. http://tryhaskell.org/
>>
>> A friend and former colleague of mine wrote that. Great guy. :-)
>
> http://drepl.dawg.eu
Very cool! Maybe it should default to using the most recent variable?
_mod2.a in the example below.
D> int a = 10:
=> a
D> int a = 5;
=> a
D> a
=> _mod1.a at /tmp/drepl.13YxH8/_mod1.d(3) conflicts with _mod2.a at
/tmp/drepl.13YxH8/_mod2.d(3)
D> _mod1.a
=> 10
D> _mod2.a
=> 5
More information about the Digitalmars-d
mailing list