Files
2026-01-26 16:43:01 -05:00

20 lines
402 B
Python

#!/usr/bin/env python3
"""
Example Python scratchpad file
Use this area to test Python code, experiment with libraries,
or prototype features for other projects.
"""
def hello_world():
"""Example function"""
print("Hello from Memory Palace!")
return "Success"
# TODO: Add your experimental code here
if __name__ == "__main__":
result = hello_world()
print(f"Result: {result}")