part one of module 06

This commit is contained in:
2026-02-13 16:31:10 +01:00
parent b68b508a04
commit d5978b8f3c
3 changed files with 51 additions and 0 deletions

5
06/alchemy/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
from .elements import create_fire, create_water
__version__ = "1.0.0"
__author__ = "Master Pythonicus"
__all__ = [create_fire(), create_water()]