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.

8 changes: 7 additions & 1 deletion src/AlanTuring.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
public class AlanTuring {
/**
* @author Trevor Hartman
* @author MJ Fracess
*
* @since Version 1.0
*
* 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
//Here goes nothing
System.out.println("Alan Turing");
}
}
8 changes: 7 additions & 1 deletion src/InAGalaxyFarFarAway.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
public class InAGalaxyFarFarAway {
/**
* @author Trevor Hartman
* @author MJ Fracess
*
* @since Version 1.0
*
* 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
//I think I am starting to pick up what you are putting down
System.out.println("A long time ago");System.out.println("in a galaxy far,");System.out.println("far away ....");
}
}
7 changes: 6 additions & 1 deletion src/JurassicPark.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
public class JurassicPark {
/**
* @author Trevor Hartman
* @author MJ Fracess
*
* @since Version 1.0
*
* 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.print("\"Life, uh,\nfinds a way.\"\n-Ian Malcolm" );
}
}