From 4e527eda0a849144860ec555fda1c4556bb9e1c8 Mon Sep 17 00:00:00 2001 From: diego Date: Sat, 20 Jan 2024 23:38:19 -0800 Subject: [PATCH] Completed Java lab 001 --- .idea/misc.xml | 2 +- src/HelloXwing.java | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 7464918..172df7b 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/src/HelloXwing.java b/src/HelloXwing.java index 2b2f3bb..90ccc6a 100644 --- a/src/HelloXwing.java +++ b/src/HelloXwing.java @@ -1,3 +1,10 @@ +/** + * + * @author Trevor Hartman + * @author Diego Carrera + * + */ + public class HelloXwing { /** * Returns a String containing a X-Wing ASCII-Art @@ -28,6 +35,7 @@ static String xwing() { } public static void main(String[] args) { + System.out.println(HelloXwing.xwing()); // Comment } }