Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions docs/src/gettingstarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,20 +47,20 @@ If you want to use a different Julia executable command for the LanguageServer r

1. From the File Explorer toolbar, click the **New File** button on the `Hello` folder:

![Julia VS Code Extension](assets/hello-1.png)
![Julia VS Code Extension](assets/hello-1.png)

2. Name the file `hello.jl`, and it automatically opens in the editor.

![Julia VS Code Extension](assets/hello-2.png)
![Julia VS Code Extension](assets/hello-2.png)

The .jl file extension indicates to VS Code that you interpret this file as a Julia program, therefore it evaluates the contents with the Julia extension and the selected interpreter.
The .jl file extension indicates to VS Code that you interpret this file as a Julia program, therefore it evaluates the contents with the Julia extension and the selected interpreter.

3. Enter the following source code in hello.jl:

```julia
msg = "Hello World"
println(msg)
```
```julia
msg = "Hello World"
println(msg)
```

## Running Hello World program

Expand Down
Loading