diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/main/java/tech/nevets/StevenTraceyMyFirstProgram.java b/src/main/java/tech/nevets/StevenTraceyMyFirstProgram.java new file mode 100644 index 0000000..cd7b277 --- /dev/null +++ b/src/main/java/tech/nevets/StevenTraceyMyFirstProgram.java @@ -0,0 +1,12 @@ +package tech.nevets; + +/** + * @author Steven Tracey + * @since 1.0.0 + */ +public class StevenTraceyMyFirstProgram { + public static void main(String[] args) { + System.out.println("Hello, World!"); + System.out.println("This is my project!"); + } +}