diff --git a/.idea/misc.xml b/.idea/misc.xml index cf9abe6..cbbff6a 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/README.md b/README.md index 5af4725..b621b08 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# Assignment 1: Error Exploration in Hello World Program + # Assignment 1: Error Exploration in Hello World Program ## Objective Commit various errors in the Hello World program to observe and understand the compiler's error messages. Follow the steps below: 1. Fork this repository to your own GitHub account. 2. Clone the forked repository locally to your machine. -3. Create a new branch named Feature001. +3. Create a new branch named Feature01. ## Instructions Make each of the modifications listed below, and perform the steps noted after #10 for each error: @@ -35,7 +35,7 @@ Save each error message screenshot like error01.png, error02.png, ..., errorN.pn ## Submission Just as you did in the first lab (Reference the Lab video in your Week 1 module): 1. create a Feature01 branch of your code if you haven't already. -2. Commit your working code and images to your local copy/Feature001 branch +2. Commit your working code and images to your local copy/Feature01 branch 3. Push it to your Remote/origin branch (i.e. GitHub: Feature01 -> origin/Feature01) 4. Then issue a Pull request to my instructor repo -5. **Make sure to COPY the Pull request URL and submit it for the lab/assignment in Canvas.** \ No newline at end of file +5. **Make sure to COPY the Pull request URL and submit it for the lab/assignment in Canvas.** diff --git a/error 01 png.PNG b/error 01 png.PNG new file mode 100644 index 0000000..7eccb7f Binary files /dev/null and b/error 01 png.PNG differ diff --git a/error.02.PNG b/error.02.PNG new file mode 100644 index 0000000..6ca8318 Binary files /dev/null and b/error.02.PNG differ diff --git a/error.03.PNG b/error.03.PNG new file mode 100644 index 0000000..0c5aaa9 Binary files /dev/null and b/error.03.PNG differ diff --git a/error.04.PNG b/error.04.PNG new file mode 100644 index 0000000..4fdf2e9 Binary files /dev/null and b/error.04.PNG differ diff --git a/error.05.PNG b/error.05.PNG new file mode 100644 index 0000000..6ae4ec2 Binary files /dev/null and b/error.05.PNG differ diff --git a/error.06.PNG b/error.06.PNG new file mode 100644 index 0000000..51935ab Binary files /dev/null and b/error.06.PNG differ diff --git a/error.07.PNG b/error.07.PNG new file mode 100644 index 0000000..13caaff Binary files /dev/null and b/error.07.PNG differ diff --git a/error.08.PNG b/error.08.PNG new file mode 100644 index 0000000..48fb4db Binary files /dev/null and b/error.08.PNG differ diff --git a/error.09.PNG b/error.09.PNG new file mode 100644 index 0000000..075beed Binary files /dev/null and b/error.09.PNG differ diff --git a/error.10.PNG b/error.10.PNG new file mode 100644 index 0000000..abc8c14 Binary files /dev/null and b/error.10.PNG differ diff --git a/src/HelloWorld.java b/src/HelloWorld.java index 16123db..08e9b19 100644 --- a/src/HelloWorld.java +++ b/src/HelloWorld.java @@ -1,7 +1,6 @@ -public class HelloWorld { - - public static void main(String[] args) { - System.out.println("Hello World"); + public class HelloWorld { + public static void main(String[] args) { + System.out.println("Hello World"); } - } +