1
0
Fork 0
mirror of https://github.com/besterprotocol/besterd synced 2023-12-13 21:00:32 +01:00
besterd/source/utils/debugger.d

8 lines
121 B
D

module utils.debugging;
import std.stdio : writeln;
void debugPrint(string message)
{
writeln("[DEBUG] " ~ message);
}