leet-code/CodeWar/src/main/java/com/code/war/entry/Token.java
2021-02-04 14:41:57 +08:00

19 lines
321 B
Java

package com.code.war.entry;
/**
* @Author: hyy
* @Date: 2020-04-24 15:53
*/
public class Token {
private String text;
private String type;
public Token(String text, String type) {
this.text = text;
this.type = type;
System.out.println("text=" + text + ",type=" + type);
}
}