我試圖編程ruby時出錯。 錯誤:C:/用戶/ PC華碩/桌面/ g.rb:3:<main>': undefined local variable or method 'y' for main:Object (NameError)
紅寶石錯誤:未定義的本地變量或方法
這裏是我的代碼:
puts " Do you like to install hacking pack?"
insta_one = gets.chomp
if insta_one == y
make
else
puts "Ok. Bye!"
end
def make
awe = file.new("shell.bat","w")
readme.puts("@echo off")
readme.puts("color a")
readme.puts("echo Installing hacking pack")
readme.puts("Thanks for downloading rootShell!")
readme.puts("My email - [email protected]")
end
你比較''ìnsta_one'''到unexistant'' 'y'''變量。你想要的是:'''如果insta_one =='y'''''。 – romainsalles 2015-01-04 12:22:23