---------------------------------------------------------------------- This is the API documentation for the gdtest_sec_dir_titles library. ---------------------------------------------------------------------- ## Functions Public functions run_demo(name: str) -> str Run a demo by name. Parameters ---------- name : str The name of the demo to run. Returns ------- str A summary of the demo run. Examples -------- >>> run_demo("starter") 'Running demo: starter' show_results(data: list) -> str Show results from a demo run. Parameters ---------- data : list A list of result values. Returns ------- str Formatted results string. Examples -------- >>> show_results([1, 2, 3]) 'Results: [1, 2, 3]'