TreeLang/global.h

8 lines
113 B
C++

#pragma once
#define DEBUG 1
#if DEBUG == 1
#define LOG(x) std::cout << x << "\n";
#else
#define LOG(x)
#endif