You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
265 B
C++

#ifndef MBUOY_PORT_HPP
#define MBUOY_PORT_HPP
#include <cstdio>
namespace mbuoy {
namespace port {
inline void puts(int x, int y, const char *s)
{
std::printf("[%d, %d]: %s\n", x, y, s);
}
} // namespace port
} // namespace mbuoy
#endif // MBUOY_PORT_HPP