1#include <string> 2#include <iostream> 3#include "colors.hpp" 4using namespace colors; 5#define func auto 6 7func main() noexcept -> int 8{ 9 std::cout << blink(bold(red(" "))) << std::endl; 10 return 0; 11}