9 lines
No EOL
136 B
C++
9 lines
No EOL
136 B
C++
#pragma once
|
|
|
|
#define DEBUG_MODE
|
|
|
|
#ifdef DEBUG_MODE
|
|
#define print(x) std::cout << x << std::endl;
|
|
#else
|
|
#define print(x)
|
|
#endif |