From b04c84dc4fd85e5f4e91b2ad48750673f517676b Mon Sep 17 00:00:00 2001 From: Wendy Harris Date: Sat, 12 Oct 2019 14:55:13 +0000 Subject: [PATCH] Done. --- lib/pry_debugging.rb | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/lib/pry_debugging.rb b/lib/pry_debugging.rb index 6908030..1353e37 100644 --- a/lib/pry_debugging.rb +++ b/lib/pry_debugging.rb @@ -1,4 +1,8 @@ +require 'pry' + def plus_two(num) - num + 2 - num -end \ No newline at end of file + prints #{num} +2 +end + +plus_two(3) +