From 8539c3a747c98043b083b10376b9f0b0e59738fd Mon Sep 17 00:00:00 2001 From: dyoungxboxpro Date: Sun, 24 Sep 2023 19:03:46 -0700 Subject: [PATCH] I had to Redo This lab beacuase it disapeared for some reason. --- .idea/misc.xml | 2 +- src/.idea/.gitignore | 3 +++ src/.idea/misc.xml | 6 ++++++ {.idea => src/.idea}/modules.xml | 4 ++-- src/.idea/vcs.xml | 6 ++++++ src/AlanTuring.java | 14 ++++++++++++-- src/InAGalaxyFarFarAway.java | 11 ++++++++++- src/Java-Assignment-001.iml | 11 +++++++++++ src/JurassicPark.java | 10 +++++++++- 9 files changed, 60 insertions(+), 7 deletions(-) create mode 100644 src/.idea/.gitignore create mode 100644 src/.idea/misc.xml rename {.idea => src/.idea}/modules.xml (50%) create mode 100644 src/.idea/vcs.xml create mode 100644 src/Java-Assignment-001.iml diff --git a/.idea/misc.xml b/.idea/misc.xml index 07115cd..ca592ec 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/src/.idea/.gitignore b/src/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/src/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/src/.idea/misc.xml b/src/.idea/misc.xml new file mode 100644 index 0000000..26fd7c7 --- /dev/null +++ b/src/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/src/.idea/modules.xml similarity index 50% rename from .idea/modules.xml rename to src/.idea/modules.xml index 5a24467..c6ee04a 100644 --- a/.idea/modules.xml +++ b/src/.idea/modules.xml @@ -2,7 +2,7 @@ - + - + \ No newline at end of file diff --git a/src/.idea/vcs.xml b/src/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/src/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/AlanTuring.java b/src/AlanTuring.java index 536a0a0..b0e370f 100644 --- a/src/AlanTuring.java +++ b/src/AlanTuring.java @@ -1,9 +1,19 @@ +/** + * + * + * @author Tervor Hartman + * @author Devin Young + * + * @Since Version 1.0 + */ public class AlanTuring { /** * Prints Alan Turing to the console * @param args Command line arguments [The source file path, The target file path, ...] **/ public static void main(String[] args) { - // Write your program here + System.out.println("Alan Turing"); + } -} \ No newline at end of file + + } \ No newline at end of file diff --git a/src/InAGalaxyFarFarAway.java b/src/InAGalaxyFarFarAway.java index ac6c6a6..cd14143 100644 --- a/src/InAGalaxyFarFarAway.java +++ b/src/InAGalaxyFarFarAway.java @@ -1,9 +1,18 @@ +/** + * + * + * @author Tervor Hartman + * @author Devin Young + * + * @Since Version 1.0 + */ 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, ...] **/ public static void main(String[] args) { - // Write your program here + System.out.println("Along Time Ago In A Galaxy Far Far Away"); + } } \ No newline at end of file diff --git a/src/Java-Assignment-001.iml b/src/Java-Assignment-001.iml new file mode 100644 index 0000000..b107a2d --- /dev/null +++ b/src/Java-Assignment-001.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/JurassicPark.java b/src/JurassicPark.java index c7951fa..15706d3 100644 --- a/src/JurassicPark.java +++ b/src/JurassicPark.java @@ -1,9 +1,17 @@ +/** +* +* +* @author Tervor Hartman +* @author Devin Young +* +* @Since Version 1.0 +*/ 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, ...] **/ public static void main(String[] args) { - // Write your program here + System.out.println("Life, uh, finds a way.-Ian Malcom"); } }