MLH Local Hack Day:Build Day-1 Challenge
This is a Repository containing the code of the Challenge named
Hello,World in a new Language. Here I have used the Java Language to show Hello, World!.
Code Written
``` //My First Java Program class HelloWorld { public static void main(String args[]) { //Your code goes here System.out.println("Hello, World!"); } }
Inspiration
A programmer needs to be aware of all the Programming Languages present in the current World. This challenge inspired me to Learn Java Language
What it does
It prints Hello, World! in the output Console when executed.
How I built it
I took the help of Tutorial for learning the Code. After writing the code, we first need to save the File with Class Name and we need to compile and then we need to Run.
Challenges I ran into
As mentioned before, after Compiling, there are errors where I missed the semicolon, and some mistakes in the Code but finally I made it execute
Accomplishments that I'm proud of
I am very much proud that I successfully shown Hello World in a new language
What I learned
I learned the basics of Java, Difference between static, main keywords, the importance of main method, Definition of the Class and Object.
What's next for Hello, World in a New Language
Now I am going to modify the code such that it reads the Text from the user, then the program prints it out. I am also going to add code for performing Various Arithmetic Operations like Addition, Subtraction etc.
Log in or sign up for Devpost to join the conversation.