Newer
Older
dub_jkp / test / issue103-single-file-package-no-ext
@andre2007 andre2007 on 3 Dec 2018 222 bytes Shebang without .d extension
  1. #!../bin/dub
  2. /+ dub.sdl:
  3. name "single-file-test"
  4. +/
  5. module hello;
  6.  
  7. void main(string[] args)
  8. {
  9. import std.stdio : writeln;
  10. assert(args.length == 4 && args[1 .. 4] == ["foo", "--", "bar"]);
  11. writeln("Hello, World!");
  12. }