Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions src/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions src/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .idea/modules.xml → src/.idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions src/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 12 additions & 2 deletions src/AlanTuring.java
Original file line number Diff line number Diff line change
@@ -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");

}
}

}
11 changes: 10 additions & 1 deletion src/InAGalaxyFarFarAway.java
Original file line number Diff line number Diff line change
@@ -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");

}
}
11 changes: 11 additions & 0 deletions src/Java-Assignment-001.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
10 changes: 9 additions & 1 deletion src/JurassicPark.java
Original file line number Diff line number Diff line change
@@ -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");
}
}