Example #1
0
        public void TestVariable()
        {
            Either <Error, Tuple <string, Term.Variable> > res = Parser.Variable("$name");

            Assert.AreEqual(new Right(new Tuple <string, Term.Variable>("", (Term.Variable)Utils.Var("name"))), res);
        }