Skip to content

Instantly share code, notes, and snippets.

@ubernostrum
ubernostrum / wat.py
Created August 23, 2017 20:13
Does this Python 3 program print anything? If so, what and why?
off = 0
off = 1
ℌ = 2
H = 3
if off == off:
print("This is offal!")
if ℌ == H:
print("What the H?")