The prompt() instruction is being replaced by input(). It is the same
thing but the order of the arguments is consistent with alert(). The dialogs have
also been changed to reflect this (with the old "help" text-- now the first argument
to input()-- being displayed prominently at the top).
prompt([usr],title,default,message) --> input([usr],message,title,default)
Example:
mob/verb/change_name()
usr.name = input("Enter your new name.","New Name",usr.name)
Keep in mind that you can spread the arguments out onto separate lines:
input(
"Please select the name of the picky person who did not like \
the prompt() instruction being inconsistent with alert().",
"Picky Person",
"Tom") in list("Dan","Tom")