bajapro/online-compiler/java_files/testing_gmail_com/Poetry.java
2025-06-07 16:18:13 +07:00

18 lines
332 B
Java

package testing_gmail_com;
public class Poetry {
public static String Poet() {
String line = "The Heav'ns and all the Constellations rung";
return line;
}
public static void main(String[] args) {
String line = Poet();
// Change the arguments:
System.out.print(line.substring(4, 11));
}
}