diff --git a/lib/pry_debugging.rb b/lib/pry_debugging.rb index 6908030d..e8a2ada0 100644 --- a/lib/pry_debugging.rb +++ b/lib/pry_debugging.rb @@ -1,4 +1,4 @@ def plus_two(num) - num + 2 - num -end \ No newline at end of file + sum = num + 2 + sum +end