Skip to content

Commit c139ef5

Browse files
committed
windows instructions
1 parent 8805b9b commit c139ef5

11 files changed

+40
-1
lines changed

src/text_editors/install_vscodium.md

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,46 @@ Then follow the instructions below specific to what kind of computer you have.
4747

4848
<details>
4949
<summary>Expand</summary>
50-
If you are on Windows you want to click this link.
50+
<p>If you are on Windows you want to click this link.</p>
51+
52+
<img src="/text_editors/windows_download.png" />
53+
54+
<p>This will download a file. Double click it and it will open an installer like this. Follow it through to the end selecting all the default options</p>
55+
<img src="/text_editors/windows_installer.png" />
56+
57+
58+
<p>When you open the program it installs you should see a screen like this.</p>
59+
<img src="/text_editors/windows_blank.png" />
60+
61+
<p>In the top-left corner select File -> Open Folder </p>
62+
<img src="/text_editors/windows_open_folder.png" />
63+
64+
<p>Make a folder somewhere on your computer to store your code. It doesn't matter what you call it.</p>
65+
<img src="/text_editors/windows_new_folder.png" />
66+
<img src="/text_editors/windows_naming_folder.png" />
67+
68+
<p>Then make a new file named <code>src/Main.java</code></p>
69+
<img src="/text_editors/windows_new_file.png" />
70+
<img src="/text_editors/windows_naming_new_file.png"/>
71+
72+
<p>Inside of this file put the following contents. </p>
73+
74+
```java,no_run
75+
void main() {
76+
IO.println("Hello, world");
77+
}
78+
```
79+
80+
<p> Now skip ahead to the next section on installing Java. Come back when you are done. </p>
81+
82+
<p> Once you are back you want to open a new terminal. </p>
83+
84+
<img src="/text_editors/windows_new_terminal.png"/>
85+
86+
<p> Type <code>java src/Main.java</code> in the terminal and press enter to run your first program.
87+
If this doesn't work you might need to restart your computer or you might have messed up a step.</p>
88+
89+
<img src="/text_editors/windows_run_code.png"/>
5190
</details>
5291

5392
## MacOS

src/text_editors/windows_blank.png

42 KB
Loading
86.8 KB
Loading
33.2 KB
Loading
1.82 KB
Loading
3.32 KB
Loading
4.7 KB
Loading
12.4 KB
Loading
33.8 KB
Loading
56 KB
Loading

0 commit comments

Comments
 (0)