Exemplo n.º 1
0
        public void InterpreteSay()
        {
            AST    CurrentAST = Input.Read();
            string speaker    = InterpreteIdentifier((AST)CurrentAST.Target) as string;
            string content    = InterpreteString((AST)CurrentAST.Value) as string;

            OutputManager.Say(speaker, content);
        }