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..7aa3317 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,11 @@ * 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 + +### 9-13-23 Skyler Means \ No newline at end of file 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 } }