## the title of the page stuff goes here - lists - are - cool ```python! def some_action(some_parameter): print(some_parameter) ``` ``` { "name": "write_file", "description": "write the Nth most recent code block to a file, given a filename.", "parameters": { "type": "object", "properties": { "filename": { "type": "string", "description": "the name of the file we want to save" }, "n": { "type": "string", "description": "the Nth most recent code block from the end, 0-indexed, to save. If n is not specified, the most recent code block will be saved." } }, "required": [ "filename" ] } } ```