我在Ruby中遇到了问题,"意外的潮汐识别者期待关键字_end",我该如何解决?
def riko(user)
if user.name.eql? 'Mia Khalifa Fan'
@client.send_msg 'Hola Mia <3 ¿Cómo te trato este dia, cosa guapa y sensual?',
else
if user.mame.eql? 'Skul Goy'
@client.send_msg 'Muerete. '
else
@client.send_msg "Hola #{user.name} o/ \ :v / "
end
end
答案 0 :(得分:1)
你正在使用else if
,它在其他语言中运行良好,但在Ruby中代表2个不同的条件。您可能希望将其替换为elsif
,而不是Ruby等效。