diff --git a/lib/a_division_by_zero_error.rb b/lib/a_division_by_zero_error.rb index fa27ef3..4410633 100644 --- a/lib/a_division_by_zero_error.rb +++ b/lib/a_division_by_zero_error.rb @@ -1,3 +1,3 @@ -42 / 6 +puts "42 / 6" -42 / 0 +"42 / 0" diff --git a/lib/a_name_error.rb b/lib/a_name_error.rb index bad266d..c0456e5 100644 --- a/lib/a_name_error.rb +++ b/lib/a_name_error.rb @@ -1,3 +1,3 @@ -"hello world" +puts "Hello World!" + -hello_world diff --git a/lib/a_syntax_error.rb b/lib/a_syntax_error.rb index 5252c8f..70e0659 100644 --- a/lib/a_syntax_error.rb +++ b/lib/a_syntax_error.rb @@ -1,3 +1,3 @@ -x = 1 +puts "x + 1" -x = +puts = "x" diff --git a/lib/a_type_error.rb b/lib/a_type_error.rb index 1217fd5..0621460 100644 --- a/lib/a_type_error.rb +++ b/lib/a_type_error.rb @@ -1,3 +1,3 @@ -1 + 1 +puts "1 + 1" -1 + "is the loneliest number" +puts "1 + is the loneliest number"