Files
basicmachines-co-basic-memory/tests/edit_file_test.py
T
2025-01-18 20:04:45 -06:00

17 lines
334 B
Python

"""Test file for experimenting with edit_file."""
def function_one():
"""First test function."""
print("Hello from function one")
# Some code here
x = 1 + 2
return x
def function_two():
"""Second test function."""
print("Hello from function two")
# Some more code
y = 3 * 4
return y