Skip to content

Instantly share code, notes, and snippets.

View RyanBalfanz's full-sized avatar
🎯
Focusing

Ryan Balfanz RyanBalfanz

🎯
Focusing
View GitHub Profile
@RyanBalfanz
RyanBalfanz / monads.py
Created May 2, 2024 04:16
Monads in Python with Type Hint Annotations
#!/usr/bin/env python3.12
# -*- coding: utf-8 -*-
import typing
from dataclasses import dataclass, field
@dataclass
class Functor[T]:
value: T