Ejemplo n.º 1
0
 public void Add(LispLiteral literal)
 {
     Elements.Add(literal);
 }
Ejemplo n.º 2
0
 public void Add(LispLiteral statement)
 {
     Statements.Add(statement);
 }
Ejemplo n.º 3
0
 public SExpr(LispLiteral head, params LispLiteral[] tail)
 {
     Elements = new List <LispLiteral>();
     Elements.Add(head);
     Elements.AddRange(tail);
 }