Schemin.Interpret.Interpreter.Interpreter C# (CSharp) Method

Interpreter() public method

public Interpreter ( ) : System
return System
        public Interpreter()
        {
            this.GlobalEnv = new Environment();

            this.tokenizer = new Tokenizer();
            this.parser = new PairParser();
            this.evaluator = new Evaluator(this);
            this.macroEvaluator = new Evaluator(this);
            this.macroExpander = new MacroExpander(macroEvaluator);

            DefinePrimitives();
        }