Skip to content

Instantly share code, notes, and snippets.

@Morgul
Morgul / atom.py
Last active July 13, 2021 19:50
Atoms/Symbols in Python
class atom(object):
"""An implementation of the atom concept, inspired by Erlang.
Modified from here: http://www.me.net.nz/blog/atoms-slash-symbols-in-python/
"""
def __init__(self, a):
self._a = intern(a)
def __eq__(self, other):