PERRY v1.0.0
P-E-R-R-Y/PERRY helps creating games with a bunch of tools.
Loading...
Searching...
No Matches
std.hpp
1#include <ostream>
2
3namespace std { // Open the std namespace (this is generally discouraged)
4 // Define the manipulator inside the std namespace
5 std::ostream& tab(std::ostream& os) {
6 return os << '\t';
7 }
8}