Skip to content

Commit ad0de10

Browse files
Merge pull request #4 from learn-co-curriculum/wip-style
style edits
2 parents 70488cd + 290d435 commit ad0de10

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,18 @@
1-
##Objectives
1+
# Variable Assignment
22

3-
Test your ability to assign a local variable
3+
## Objectives
44

5-
##Instructions
5+
1. Test your ability to assign a local variable.
66

7-
You will assign a local variable named `greeting` that is equal to `Hello World`.
8-
9-
You should first make sure the test suite is running correctly by running: `learn`.
10-
11-
If you get:
7+
## Instructions
128

13-
```
14-
-bash: learn: command not found
15-
```
9+
You will assign a local variable named `greeting` that is equal to `Hello World`.
1610

17-
You need to install learn. Do that via: `gem install learn-co` in your command line.
11+
You should first make sure the test suite is running correctly by running `learn`.
1812

1913
Upon the first run of the test suite you should see:
2014

21-
```
15+
```bash
2216
FF
2317

2418
Failures:
@@ -34,8 +28,14 @@ Failures:
3428
Finished in 0.00048 seconds
3529
2 examples, 1 failure
3630
```
31+
However, if you get:
32+
33+
```bash
34+
-bash: learn: command not found
35+
```
36+
Then you need to install Learn. Do that via: `gem install learn-co` in your command line.
3737

38-
To solve this error, create a local variable, "greeting" in the `variable.rb` file. Set this variable equal to the string "Hello World". Run `learn` to see if you did this correctly.
38+
To solve this test failure, create a local variable `greeting` in the `variable.rb` file. Set `greeting` equal to the string `"Hello World"`. Run `learn` to see if you did this correctly.
3939

4040
## Resources
4141
* [Learn to Program](https://pine.fm/LearnToProgram/chap_03.html)

0 commit comments

Comments
 (0)