fun python behavior:
$ cat foo.py
import foo
a = 5
print(foo.a)
$ python foo.py
5
5
$ mkdir foo
$ echo 'a = 7' >foo/__init__.py
$ python foo.py
7
$
i never guessed you could import yourself, but only once

──────────────────────────────
🌸 many-shaped creature
✨ too many projects
🚀 cannot be stopped
🌙 stayed up too late
eggbug enjoyer
──────────────────────────────
header image: chapter 8 complete from celeste
avatar: made using this character builder
fun python behavior:
$ cat foo.py
import foo
a = 5
print(foo.a)
$ python foo.py
5
5
$ mkdir foo
$ echo 'a = 7' >foo/__init__.py
$ python foo.py
7
$
i never guessed you could import yourself, but only once