Skip to content

Commit 6befff8

Browse files
committed
Book Updates
-refine chapter 1.3
1 parent 552678c commit 6befff8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

book/chapter1.3.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ title: "Chapter 1.3"
88

99
Before we do anything, let's keep organized! Make a directory specifically for this book, maybe `glang_learning` and move into it. Create a file titled "main.glang" and open it in an IDE or text editor.
1010

11-
For the record, `.glang` files can have any name. The cool thing about GLang, is it's ability to run any program with the `.glang` extension.
11+
For the record, `.glang` files can be any name. GLang has the ability to run any program with the `.glang` extension.
1212

1313
## Writing The Code
1414

@@ -18,7 +18,7 @@ Inside the `main.glang` file, we are going to write the following (you may not u
1818
bark("Hello, World!");
1919
```
2020

21-
Save this file and open the all might terminal in the same directory as the `main.glang` file (use the `cd` command, or right click > open terminal in that directory). To run this file, we type the following:
21+
Save this file and open the terminal in the same directory as the `main.glang` file (use the `cd` command, or right click > open terminal in that directory). To run this file, we type the following:
2222

2323
```
2424
glang main.glang
@@ -28,7 +28,7 @@ That's it! You should see `Hello, World!` inside the terminal. Congrats on writi
2828

2929
## Your Challenge 🤔
3030

31-
Modify the Hello, World! inside quotation marks (`""`) to display the message Learning to code is easy! inside the terminal.
31+
Modify the `Hello, World!` inside quotation marks (`""`) to display the message Learning to code is easy! inside the terminal.
3232

3333
::: details Answer
3434
```

0 commit comments

Comments
 (0)