Skip to content

Instantly share code, notes, and snippets.

View aGIToz's full-sized avatar
🐯

Amitoz Azad aGIToz

🐯
  • France
View GitHub Profile
@aGIToz
aGIToz / python_like_print.hpp
Created September 4, 2019 00:21 — forked from ilebedie/python_like_print.hpp
Python-like print in c++
#include <iostream>
using namespace std;
void print(){cout<<'\n';}
template<typename T, typename ...TAIL>
void print(const T &t, TAIL... tail)
{
cout<<t<<' ';