view tests/mini/phobos/imports2.d @ 670:4f004553de33

Fixed dynamic array -> boolean. does (arr.ptr !is null) now instead of (arr.length != 0)
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Wed, 08 Oct 2008 22:38:52 +0200
parents fc098100ecc7
children
line wrap: on
line source

module imports2;
import std.stdio;

void main() {
    writefln("Hello world!"[]);
}