Ruby - Metaprogramming Fundamentals
What is the error in this Ruby code snippet?
class Vehicle
define_method(:move) do
puts 'Moving'
end
define_method(:stop)
puts 'Stopped'
end
end