15 lines
282 B
Java
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);
|
|
}
|
|
}
|