我儿子用Shoes做了一个有趣的程序,这个程序基本上和ruby一样,但有一个gui。(我所知道的语法上的唯一区别是alert,而不是put。)他在运行它时出错了,我找不到所有这些错误的原因。*是机密信息的替代品。
谢谢
Shoes.app do
#revised lines 1-17
line = ask "Password (lowercase)"
if line == "password"
#superuser password for fast login
alert "Logged In"
name = ask "Name (lowercase)"
if name == "***"
alert "Welcome, ***"
alert "Now, please verify your identity"
idconfirm = ask "What is your 4 digit ID number; if unknown, type 'u'"
if idconfirm == "u"
alert "Please contact *** immediatly at ********@gmail.com"
end
if idconfirm == "******"
alert "Administrator Code accepted"
alert "What do you wish to do now?"
stack(:align => "center") { #stack is for buttons
button "Latest projects (bip)" do
stack(:align => "center") { #stack is for paragraph and buttons
para "==================================================================
build an IRC bot FRAMEWORK
learn more languages
tri-boot?
backup files for win 8 clousre (WHEN NECESSARY)"
button "Rblx Assignments" {
rblxconf = ask "PASSCODE"
if rblxconf == "***********"
#not FINISHED continue
para(:align => "center") #CHECK LINE PARA_NTHESES
"===============================================================
learn roblox script
build own admin script
build roblox ***
find other ways to *******"
else
alert "Not Correct" #revise alert
end
}
}
end
button "WELCOME"
}
end
#revised up to here CONFIRMED
if idconfirm == "****"
alert "Thank You, ***. What do you want to do now?"
stack(:align => "center") do #stack is for buttons
button "Latest projects (bip)" do
stack(:align => "center") {
para "==================================================================
build an IRC bot FRAMEWORK
learn more languages
tri-boot?
backup files for win 8 clousre (WHEN NECESSARY)"
button "Rblx Assignments" {
rblxconf = ask "PASSCODE"
if rblxconf == "***********"
#not FINISHED continue
para(
:align => "center")
"===============================================================
learn roblox script
build own admin script
build roblox ***
find other ways to *******"
else
alert "Not Correct"
end
}
}
end
button "WELCOME"
button "Admin Log In" do
adminconfirm = ask "Admin Code (Hint:MMORPG accounts)"
if adminconfirm == "******"
alert "Administrator Code accepted"
alert "What do you wish to do now"
#IN PROGRESS
end
end
end
end
else
alert "Your name is not registered"
end
#superuser password for fast login
else
alert "Wrong Password"
end
#REVISED UP TO HERE [CONFIRMED]
# +=========================================================================================================================================================
#REVISE EVERYTHING OK?
#revise 25 39 42 55 78 82 & 86 and more ;P
end
尝试将所有的"{"切换为"do",将"}"切换至"end"。一旦我这么做了,我就不再犯错误了。
没有任何鞋的经验,我不知道为什么这很重要。但两者之间有一些细微的区别——请参阅Ruby中块的do.end与花括号。