From 6dab6e8a70ac7e8d93125421a739249e542de4f2 Mon Sep 17 00:00:00 2001 From: Skyler Date: Wed, 13 Sep 2023 12:53:00 -0700 Subject: [PATCH 1/4] Ch1 Questions --- .idea/misc.xml | 1 - README.md | 6 ++++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 7464918..2e5d9da 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,4 +1,3 @@ - diff --git a/README.md b/README.md index 5c6885c..c12cf50 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,9 @@ * 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. + +# Chapter 1 Questions +1. A statement is a segment of executable code, a comment is text added to a program which is not executed and readable for humans +2. A portable program is one that can be executed on multiple different systems or architectures +3. To compile is to "bundle" and translate written code into an individual executable file which can then be run +4. An executable is a program which can be run on supported hardware \ No newline at end of file From d3758897ebc8bca82b98d1af6a890f644f935aea Mon Sep 17 00:00:00 2001 From: Skyler Date: Wed, 13 Sep 2023 13:01:13 -0700 Subject: [PATCH 2/4] Print xwing --- src/HelloXwing.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HelloXwing.java b/src/HelloXwing.java index 2b2f3bb..a5777cb 100644 --- a/src/HelloXwing.java +++ b/src/HelloXwing.java @@ -28,6 +28,6 @@ static String xwing() { } public static void main(String[] args) { - // Comment + System.out.print(xwing()); // Print called string xwing } } From e9848e999ddd5dd8886c81ca7a482b52fa0a244e Mon Sep 17 00:00:00 2001 From: Skyler Date: Wed, 13 Sep 2023 13:16:46 -0700 Subject: [PATCH 3/4] Print xwing --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c12cf50..e21ea8f 100644 --- a/README.md +++ b/README.md @@ -9,4 +9,5 @@ 1. A statement is a segment of executable code, a comment is text added to a program which is not executed and readable for humans 2. A portable program is one that can be executed on multiple different systems or architectures 3. To compile is to "bundle" and translate written code into an individual executable file which can then be run -4. An executable is a program which can be run on supported hardware \ No newline at end of file +4. An executable is a program which can be run on supported hardware + From 250b7feeb4a3abe0661212c58d810825713826f3 Mon Sep 17 00:00:00 2001 From: Skyler Date: Wed, 13 Sep 2023 13:18:04 -0700 Subject: [PATCH 4/4] Print xwing & Ch1 Questions --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e21ea8f..7aa3317 100644 --- a/README.md +++ b/README.md @@ -11,3 +11,4 @@ 3. To compile is to "bundle" and translate written code into an individual executable file which can then be run 4. An executable is a program which can be run on supported hardware +### 9-13-23 Skyler Means \ No newline at end of file