Newer
Older
dub_jkp / test / issue2684-recipe-file / source / app.d
@Marcelo Silva Nascimento Mancini Marcelo Silva Nascimento Mancini on 13 Aug 2023 186 bytes Implemented recipe files for dub #2684 (#2685)
module app;
import std.stdio;

void main()
{
	writeln("This was built using dub.json.
Try using the other configuration by calling dub with:
dub --recipe=dubWithAnotherSource.json
");
}