Easy way to output file/line for debugging.
Usage:
trace(); someFunc(); trace("Blah blah blah"); int x = *(cast(int*)null); // Dereference null trace();
Example Output:
C:\path\file.d(1): trace C:\path\file.d(3): Blah blah blah {segfault!}
See Implementation
Easy way to output file/line for debugging.
Usage:
Example Output: