diff --git a/.idea/misc.xml b/.idea/misc.xml index 07115cd..ef89d98 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,4 +1,3 @@ - diff --git a/src/AlanTuring.java b/src/AlanTuring.java index 536a0a0..3374b72 100644 --- a/src/AlanTuring.java +++ b/src/AlanTuring.java @@ -5,5 +5,14 @@ public class AlanTuring { **/ public static void main(String[] args) { // Write your program here - } -} \ No newline at end of file +/** + * + * @author Trevor Hartman + * @author Matthew Miller + * + * @since Version 1.0 + * + */ +System.out.println("Alan Turing"); + } + } \ No newline at end of file diff --git a/src/InAGalaxyFarFarAway.java b/src/InAGalaxyFarFarAway.java index ac6c6a6..9c54520 100644 --- a/src/InAGalaxyFarFarAway.java +++ b/src/InAGalaxyFarFarAway.java @@ -5,5 +5,16 @@ public class InAGalaxyFarFarAway { **/ public static void main(String[] args) { // Write your program here + /** + * + * @author Trevor Hartman + * @author Matthew Miller + * + * @since Version 1.0 + * + */ + 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..10c2410 100644 --- a/src/JurassicPark.java +++ b/src/JurassicPark.java @@ -1,3 +1,4 @@ + public class JurassicPark { /** * Prints famous Jurasic Park quote to console with only 1 sout statement. @@ -5,5 +6,15 @@ public class JurassicPark { **/ public static void main(String[] args) { // Write your program here + /** + * + * @author Trevor Hartman + * @author Matthew Miller + * + * @since Version 1.0 + * + */ + String Ian = "\"Life, uh,\nfinds a way.\n—Ian Malcolm\""; + System.out.println(Ian); } }