17 lines
534 B
Java
17 lines
534 B
Java
package TP2.asd;
|
|
import TP2.asd.Interface.*;
|
|
import TP2.asd.Program.Type_intImp;
|
|
import TP2.asd.SymTable.*;
|
|
public class test_symtable{
|
|
private static final Type Type_intImp = null;
|
|
|
|
public static void main(String[] args){
|
|
SymTable test_symTable = new SymTable();
|
|
test_symTable.next_layer();
|
|
//test_symTable.peppapeek();
|
|
test_symTable.addVar("a", Type_intImp);
|
|
System.out.print(test_symTable.print_all());
|
|
String a =" addsqdqsdqs";
|
|
a.substring(1, a.length()-1);
|
|
}
|
|
} |