1 /++ 2 $(H2 Scriptlike $(SCRIPTLIKE_VERSION)) 3 Utility to aid in script-like programs. 4 5 Written in the $(LINK2 http://dlang.org, D programming language). 6 7 Import this `scriptlike.only` module instead of `scriptlike` if you want to 8 import all of Scriptlike, but DON'T want to automatically import any of Phobos. 9 10 Copyright: Copyright (C) 2014-2017 Nick Sabalausky 11 License: $(LINK2 https://github.com/Abscissa/scriptlike/blob/master/LICENSE.txt, zlib/libpng) 12 Authors: Nick Sabalausky 13 +/ 14 15 16 module scriptlike.only; 17 18 public import scriptlike.core; 19 public import scriptlike.interact; 20 public import scriptlike.fail; 21 public import scriptlike.file; 22 public import scriptlike.path; 23 public import scriptlike.process;