From c9ce5de4bc9e7ce7cb2f2f25746613415a9e7611 Mon Sep 17 00:00:00 2001 From: francoPalacios Date: Thu, 24 Aug 2023 10:44:18 -0700 Subject: [PATCH 1/3] xwing() prints to console successfully --- src/HelloXwing.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/HelloXwing.java b/src/HelloXwing.java index 16dfd8e..e836d34 100644 --- a/src/HelloXwing.java +++ b/src/HelloXwing.java @@ -27,6 +27,9 @@ static String xwing() { \\_\\_|"""; } + + public static void main(String[] args) { + System.out.println(xwing()); } } From 5ad0bfc26c2698d9437cc2d943d2cec8aa413a04 Mon Sep 17 00:00:00 2001 From: francoPalacios Date: Thu, 24 Aug 2023 13:03:21 -0700 Subject: [PATCH 2/3] testing also --- src/HelloXwing.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/HelloXwing.java b/src/HelloXwing.java index e836d34..4550c78 100644 --- a/src/HelloXwing.java +++ b/src/HelloXwing.java @@ -31,5 +31,6 @@ static String xwing() { public static void main(String[] args) { System.out.println(xwing()); + //finished project } } From 4529ae8cabb500060083ac055252952e36d92b04 Mon Sep 17 00:00:00 2001 From: francoPalacios Date: Thu, 24 Aug 2023 13:03:21 -0700 Subject: [PATCH 3/3] testing also --- README.md | 13 +++++++++++++ src/HelloXwing.java | 1 + 2 files changed, 14 insertions(+) diff --git a/README.md b/README.md index 5c6885c..bd2873a 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,16 @@ * 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. + + +* In computer jargon, what’s the difference between a statement and a comment? + a statement is readable to the computer, a comment is for human eyes. + +* What does it mean to say that a program is portable? + a software is easily moved from one computing environment to another. + +* In common English, what does the word compile mean? + to compile in english means to assemble together. + +* What is an executable? Why is that word used as a noun? + an executable file is able to be run by a computer. \ No newline at end of file diff --git a/src/HelloXwing.java b/src/HelloXwing.java index e836d34..4550c78 100644 --- a/src/HelloXwing.java +++ b/src/HelloXwing.java @@ -31,5 +31,6 @@ static String xwing() { public static void main(String[] args) { System.out.println(xwing()); + //finished project } }