summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dayXX.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/dayXX.java b/dayXX.java
new file mode 100644
index 0000000..bf50f5e
--- /dev/null
+++ b/dayXX.java
@@ -0,0 +1,20 @@
+import java.io.IOException;
+import java.io.RandomAccessFile;
+
+public class dayXX {
+ public static void main(String args[]) throws IOException {
+ RandomAccessFile input = new RandomAccessFile("test", "r");
+ System.out.println("Day XX Part 1: " + part1(input));
+ input.seek(0);
+ System.out.println("Day XX Part 2: " + part2(input));
+ input.close();
+ }
+
+ public static String part1(RandomAccessFile input) throws IOException {
+ return "WIP";
+ }
+
+ public static String part2(RandomAccessFile input) throws IOException {
+ return "WIP";
+ }
+}