---------------------------------------------------------------------- This is the API documentation for the gdtest_sec_examples library. ---------------------------------------------------------------------- ## Functions Public functions demo(x: int) -> int Run a demo with the given input. Parameters ---------- x : int The input value for the demo. Returns ------- int The demo result. Examples -------- >>> demo(5) 10 showcase(items: list) -> str Showcase a list of items as a formatted string. Parameters ---------- items : list The items to showcase. Returns ------- str A formatted string of all items. Examples -------- >>> showcase(["a", "b", "c"]) 'a, b, c'