14 lines
146 B
C
14 lines
146 B
C
#include "portable_namespace.h"
|
|
|
|
#ifdef __cplusplus
|
|
signed main() {
|
|
nm::fun();
|
|
return 0;
|
|
}
|
|
#else
|
|
signed main() {
|
|
NM_fun();
|
|
return 0;
|
|
}
|
|
#endif
|