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.

9 changes: 9 additions & 0 deletions src/AlanTuring.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
/**
*
* @author Trevor Hartman
* @author Taylor Christie
*
* @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: 11 additions & 0 deletions src/InAGalaxyFarFarAway.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
/**
*
* @author Trevor Hartman
* @author Taylor Christie
*
* @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("A long time ago ");
System.out.println("in a galaxy far, ");
System.out.println("far away...");
}
}
13 changes: 13 additions & 0 deletions src/JurassicPark.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
/**
*
* @author Trevor Hartman
* @author Taylor Christie
*
* @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 Malcolm
""");
}
}