From 222741aa8cebc86acfea9eb7064a7022e1256bb1 Mon Sep 17 00:00:00 2001 From: "nate.baldy" Date: Fri, 19 Jan 2024 10:16:57 -0800 Subject: [PATCH] Completed Java Lab 001 --- .idea/misc.xml | 2 +- src/HelloXwing.java | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) 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..272e9c9 100644 --- a/src/HelloXwing.java +++ b/src/HelloXwing.java @@ -1,3 +1,11 @@ +/** + * + * @author nate.baldy + * + * @since version 1.0 + * + */ + public class HelloXwing { /** * Returns a String containing a X-Wing ASCII-Art @@ -28,6 +36,6 @@ static String xwing() { } public static void main(String[] args) { - // Comment + System.out.println(HelloXwing.xwing()); } }