我有几行代码,我宁愿将它们作为一个函数调用,每次我需要调用它时都粘贴进去。我知道如何在 C++ 中执行此操作,但不确定它在 Ruby 中是否相同或如何工作。
if op2_health < 0
op2_health = 0
@result = op1_name + ' Wins!'
elsif op1_health < 0
op1_health = 0
@result = op2_name + ' Wins'
end
那是我想用作函数的代码,但我不知道 Ruby 中的函数语法。谢谢!