2022-04-10 14:32:51 +02:00

15 lines
282 B
Java

package com.gitlesson;
import com.gitlesson.demolibrary.TestLibrary;
/**
* Prints the string that gets from TestLibrary!
*
*/
public class App {
public static void main(String[] args) {
String test = TestLibrary.getText();
System.out.println(test);
}
}