Wishlist for D

Jonas Drewsen via Digitalmars-d digitalmars-d at puremagic.com
Fri Dec 18 03:16:40 PST 2015


On Tuesday, 1 December 2015 at 16:43:55 UTC, Ozan wrote:
> Hi
>
> We all have experience with several programming languages and 
> the great ideas implemented there. It is close to Xmas ....

The one wish I have is to be able to call stuff directly without 
needing to import the module (like you can in c#):

std.stdio.writeln("foo")

and not

import std.stdio;
writeln("foo");

Simple thing - but used regularly enough to be quite annoying not 
to have.

I wonder if there are some kind of parsing/semantic issues with 
supporting it?






More information about the Digitalmars-d mailing list