summaryrefslogtreecommitdiff
path: root/examples/basic_usage.rb
diff options
context:
space:
mode:
Diffstat (limited to 'examples/basic_usage.rb')
-rw-r--r--examples/basic_usage.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/basic_usage.rb b/examples/basic_usage.rb
index d9ab2a9..3f9b5aa 100644
--- a/examples/basic_usage.rb
+++ b/examples/basic_usage.rb
@@ -23,13 +23,13 @@ class NameClass
def initialize(first, last)
@first, @last = first, last
end
-
+
attr_reader :first, :last
end
begin
entry = Hash.new
-
+
# basic output
say("Enter a contact:")