# Getting Started

Here's a basic example that runs and prints output:


``` python
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:

``` python
from gdtest_ug_with_code.core import transform

data = {"key": "value"}
output = transform(data)
print(output)  # {'key': 'VALUE'}
```
