mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
17 lines
334 B
Python
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 |