Making this site

Posted on Jul 27, 2022

This site will primarily have some content about tech/cs topics that currently interest me and also serve as a resume site.

import numpy as np

def hello(num: int):
    return num * 2

num = 5
print(f"hello, num : {hello(num)}")