/* * File: print.hpp * Purpose: SNU Print library * Author: Amlal El Mahrouss. (founder@snu.systems) * Copyright 2025, SNU Systems Corp all rights reserved. */ #ifndef _SNU_PRINT_HPP #define _SNU_PRINT_HPP #include namespace snu { 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 #endif // ifndef _SNU_PRINT_HPP