Пример #1
0
 /// <summary>
 /// Define the symbol within current scope with default type of object
 /// </summary>
 /// <param name="name">Name of the varaible</param>
 public void DefineVariable(string name)
 {
     _current.DefineVariable(name, LTypes.Object);
 }