aboutsummaryrefslogtreecommitdiff
path: root/src/PressAnyKey.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/PressAnyKey.java')
-rw-r--r--src/PressAnyKey.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/PressAnyKey.java b/src/PressAnyKey.java
new file mode 100644
index 0000000..1a72bfe
--- /dev/null
+++ b/src/PressAnyKey.java
@@ -0,0 +1,19 @@
+/* */ import java.io.BufferedReader;
+/* */ import java.io.InputStreamReader;
+/* */ import java.io.PrintStream;
+/* */
+/* */ public class PressAnyKey
+/* */ {
+/* */ public PressAnyKey(String disp)
+/* */ throws Exception
+/* */ {
+/* 13 */ System.out.println(disp);
+/* 14 */ BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
+/* 15 */ int ch = stdin.read();
+/* */ }
+/* */ }
+
+/* Location: Modulus.jar
+ * Qualified Name: PressAnyKey
+ * JD-Core Version: 0.6.2
+ */ \ No newline at end of file