Newer
Older
dub_jkp / test / issue103-single-file-package.d
@Sönke Ludwig Sönke Ludwig on 25 May 2016 137 bytes Fix executable bit.
#!../bin/dub
/+ dub.sdl:
   name "hello_world"
+/
module hello;

void main()
{
	import std.stdio : writeln;
	writeln("Hello, World!");
}