(* * Name: * NetID: *) (* Returns the list of words in string s. *) fun words(s:string) : string list = raise Fail "not implemented" (* Converts text in s between underscores to upper case. *) fun emphasize(s:string) : string = raise Fail "not implemented"