8 lines
130 B
OCaml
8 lines
130 B
OCaml
|
|
#ifdef DEBUG
|
||
|
|
#define debug(s) Printf.eprintf "[%S %i] %s\n%!" __FILE__ __LINE__ s
|
||
|
|
#else
|
||
|
|
#define debug(s) ()
|
||
|
|
#endif
|
||
|
|
|
||
|
|
debug("test")
|