import org.tater.*;
public class MyLibrary {
// Your code here
}
import org.tater.*;
public class MyLibrary {
public void myMethod() {
Logger.debug("This is a debug message.");
// Your code here
}
}
import com.example.MyLibrary;
public class Main {
public static void main(String[] args) {
MyLibrary myLibrary = new MyLibrary();
myLibrary.myMethod();
}
}