Skip to content
Open

Done #214

Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Variable Assignment

greeting =
## Objectives

1. Assign a local variable.

"Hello, World"
## Instructions

You will assign a local variable named `greeting` that is equal to `"Hello World"`.
Expand Down
1 change: 1 addition & 0 deletions variable.rb
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Define a local variable called 'greeting',
# give it the value of the string "Hello World"
greeting = "Hello World"