public ActionResult ShowR(rpsLogic newWord) { return(View(newWord)); }
public ActionResult FormR(string word) { rpsLogic newWord = new rpsLogic(word); return(View("ShowR", newWord)); }