diff --git a/.idea/misc.xml b/.idea/misc.xml index 07115cd..0be1bd5 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/src/AlanTuring.java b/src/AlanTuring.java index 536a0a0..e7ae01c 100644 --- a/src/AlanTuring.java +++ b/src/AlanTuring.java @@ -1,9 +1,17 @@ + public class AlanTuring { /** * Prints Alan Turing to the console * @param args Command line arguments [The source file path, The target file path, ...] - **/ + * + * @author Trevor Hartman + * @author Ishwar Sharma + * + * @since Version 1.0 + * + */ public static void main(String[] args) { - // Write your program here + + System.out.println("Alan Turing"); } } \ No newline at end of file diff --git a/src/InAGalaxyFarFarAway.java b/src/InAGalaxyFarFarAway.java index ac6c6a6..8edb20e 100644 --- a/src/InAGalaxyFarFarAway.java +++ b/src/InAGalaxyFarFarAway.java @@ -2,8 +2,16 @@ public class InAGalaxyFarFarAway { /** * Prints a famous Star Wars intro to the console with 3 souts. * @param args Command line arguments [The source file path, The target file path, ...] - **/ + * + * @author Trevor Hartman + * @author Ishwar Sharma + * + * @since Version 1.0 + * + */ public static void main(String[] args) { - // Write your program here + System.out.println("A long time ago"); + System.out.println("in a galaxy far,"); + System.out.println("far away...."); + } } -} \ No newline at end of file diff --git a/src/JurassicPark.java b/src/JurassicPark.java index c7951fa..3936540 100644 --- a/src/JurassicPark.java +++ b/src/JurassicPark.java @@ -2,8 +2,14 @@ public class JurassicPark { /** * Prints famous Jurasic Park quote to console with only 1 sout statement. * @param args Command line arguments [The source file path, The target file path, ...] - **/ + * + * @author Trevor Hartman + * @author Ishwar Sharma + * + * @since Version 1.0 + * + */ public static void main(String[] args) { - // Write your program here + System.out.println("\"Life, uh,\"\nfinds a way.\"\n—Ian Malcolm"); } }