/* * File: print.hpp * Purpose: SNU Print library * Author: Amlal El Mahrouss. (founder@snu.systems) * Copyright 2025, SNU Systems Corp. */ #ifndef _SNU_PRINT_HPP #define _SNU_PRINT_HPP #include namespace snu::io { template inline void print(T... fmt) { std::cout << std::move(fmt...); } template inline void println(T... fmt) { std::cout << std::move(fmt...); std::cout << std::endl; } } // namespace snu::io #endif // ifndef _SNU_PRINT_HPP