From 0d34eeee6cb697a12717b4d14e2b11dd182a8479 Mon Sep 17 00:00:00 2001 From: Trevor-Hartman Date: Thu, 24 Aug 2023 12:39:50 -0700 Subject: [PATCH 1/3] Testing not quite done. --- src/HelloXwing.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HelloXwing.java b/src/HelloXwing.java index 2b2f3bb..0fea9d3 100644 --- a/src/HelloXwing.java +++ b/src/HelloXwing.java @@ -28,6 +28,6 @@ static String xwing() { } public static void main(String[] args) { - // Comment + //changes } } From d8ea721940c9600c4af4e1e80444f97229997091 Mon Sep 17 00:00:00 2001 From: loosebruce79 <102570274+loosebruce79@users.noreply.github.com> Date: Sat, 26 Aug 2023 13:53:14 -0700 Subject: [PATCH 2/3] complete Lab 001 Bud Ross --- .idea/misc.xml | 2 +- src/HelloXwing.java | 12 +++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 7464918..f34ceba 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 0fea9d3..6409eca 100644 --- a/src/HelloXwing.java +++ b/src/HelloXwing.java @@ -1,3 +1,13 @@ +/** + * @author Trevor Hartman + * + * @author Bud Ross + * + * + */ + + + public class HelloXwing { /** * Returns a String containing a X-Wing ASCII-Art @@ -28,6 +38,6 @@ static String xwing() { } public static void main(String[] args) { - //changes + System.out.println(HelloXwing.xwing());//changes } } From 5a3c52109c8c32bb850ab0b7ad7f675d1dbab471 Mon Sep 17 00:00:00 2001 From: loosebruce79 <102570274+loosebruce79@users.noreply.github.com> Date: Sat, 26 Aug 2023 14:27:00 -0700 Subject: [PATCH 3/3] complete Lab 001 Bud Ross --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 5c6885c..50cfb41 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,14 @@ * Modify the HelloXwing.java file to print out to the **console** the xwing() method. * Run your program, verify an ascii-art X-Wing prints to the console, and save your changes. * Commit your changes back to your GitHub account and follow the video on doing a Pull request to the instructor account. + +* +*#1**In computer jargon, what’s the difference between a statement and a comment? A statement is a line of code that preforms a basic operation. +* A comment is A line beginning with two // that explains the code. +* + #2**What does it mean to say that a program is portable? It means it is a high level program that can run on many different computers. + #3**In common English, what does the word compile mean? Compile means to read an entire program and then translate. +* + #4**What is an executable? Why is that word used as a noun? An executable is a translated program also called object code. +* Its used as a noun because it refers to an object code. +* \ No newline at end of file