Newer
Older
dub_jkp / test / issue1158-stdin-for-single-files / stdin.d
@andre2007 andre2007 on 7 Aug 2018 108 bytes issue1158-stdin-for-single-files
  1. /+ dub.sdl:
  2. name "hello"
  3. +/
  4. void main(string[] args) {
  5. import std.stdio : writeln;
  6. writeln(args[1..$]);
  7. }