> For the complete documentation index, see [llms.txt](https://hntech.gitbook.io/blueconda-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hntech.gitbook.io/blueconda-documentation/your-first-project-beginners/creating-a-new-file.md).

# Creating a New File

When you first launch Blueconda, you're greeted with some welcome code:

```python
# Welcome to Blueconda
print("Hello, World!")
```

There are 2 very easy ways to create a new file:

1. You can manually delete all this and get started.
2. Click the "New File" button. This is the recommended approach as this will refresh all the variables too, giving you a clean start.

<figure><img src="/files/YoV2igN8hKcRxjfKy6OU" alt="" width="56"><figcaption><p>The "New File" button.</p></figcaption></figure>

This is a very basic starting point, but is a crucial step. Now lets get coding!

{% hint style="info" %}
Using New File is recommended because it deletes the "current file" setting that the app uses to maintain the current script being edited. This will prevent you accidentally modifying the wrong file!&#x20;
{% endhint %}

#### Other basic buttons:

<figure><img src="/files/r3Ml8Qsm5MghE4YACt0h" alt="" width="128"><figcaption><p>Save File</p></figcaption></figure>

<figure><img src="/files/8NCaFbLecbsEuccl6D9R" alt="" width="128"><figcaption><p>Open New File</p></figcaption></figure>

Now let's write some code!
