diff --git a/app.rb b/app.rb index a6794e05..7f02ea2c 100644 --- a/app.rb +++ b/app.rb @@ -14,10 +14,14 @@ # # 1 + 1 # puts add + add -def add num1, num2 +puts "Hello World!" + +print "Pass this test, please." +p [1,2,3] + +def add num1,num2 puts num1 puts num2 num1 + num2 end - puts add(1,3) + add(2,2) \ No newline at end of file