Here’s a basic example that runs and prints output:
from gdtest_ug_with_code.core import process result = process([1, 2, 3]) print(result)
[2, 4, 6]
And a fenced (non-executable) code block showing a transform:
from gdtest_ug_with_code.core import transform data = {"key": "value"} output = transform(data) print(output) # {'key': 'VALUE'}