Skip to content

Instantly share code, notes, and snippets.

View Adaickalavan's full-sized avatar
🤠
If nothing goes right, go left!

adai Adaickalavan

🤠
If nothing goes right, go left!
View GitHub Profile
@Adaickalavan
Adaickalavan / template_operator_overload.cpp
Created December 27, 2020 21:38
C++ template operator overload with template class
#include <iostream>
#include <vector>
using std::ostream;
using std::vector;
using std::cout;
template<class T>
class List {
private:
@Adaickalavan
Adaickalavan / asyncio_create_task.py
Last active November 13, 2020 12:05
Playground to test asyncio functionality
import asyncio
import time
async def msg(text):
print("Inside msg")
await asyncio.sleep(1)
print(text)
async def long_operation():
print("Long_operation started")