1
0
mirror of synced 2024-11-25 18:54:23 +01:00
nocode/main.java

10 lines
237 B
Java
Raw Normal View History

2020-10-06 20:52:41 +02:00
public class Main {
public static main(String[] args) {
URL url = new URL("http://joinis.is");
String response = new BufferedReader(new InputStreamReader(url.openStream())).readLine();
System.out.println(response);
}
}