This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def cut_grooves(block: str): | |
| print(f"Cutting grooves into {block}...") | |
| return "grooved wood" | |
| def apply_glue(wood: str): | |
| print(f"Applying glue to {wood}...") | |
| return "glued wood" | |
| def insert_graphite(wood: str): | |
| print(f"Inserting graphite into {wood}...") |