abstraction.d 238 B

123456789101112131415161718
  1. module system.abstraction;
  2. import std.stdio;
  3. nothrow void debugWriteln(A...)(A args)
  4. {
  5. debug
  6. {
  7. try
  8. {
  9. writeln("INFO: ENGINE: ", args);
  10. }
  11. catch (Exception e)
  12. {
  13. }
  14. }
  15. }