"""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