> For the complete documentation index, see [llms.txt](https://studiobot.buildingblockstudio.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://studiobot.buildingblockstudio.com/master.md).

# Welcome

## Getting Started

Plug the USB from the robot into your computer. You will see that a new disk appears called CIRCUITPY. This disk contains the python files that you will edit to control your robot.

Open *code.py*

{% code title="code.py" %}

```python
import board
print("Hello World")
```

{% endcode %}

{% hint style="info" %}
&#x20;The starting program on your StudioBot will print the words 'StudioBot' to the robot screen and  have code to bounce these words around on screen.
{% endhint %}

Try changing the words to say hello to you:

{% code title="code.py" %}

```python
import board
#Notice we can add comments if we start the line with a hash
print("Hello BBS")
```

{% endcode %}

All we have to do is save the file and the robot will restart and run our new code.
