/1DAM-Programming

This repository will contain all the exercises that I'm going to do this year.

Primary LanguageJava

1DAM-Exercises Compilation Instructions

This repository will contain all the programming exercises that I'm going to do this year at @IESCampanillas in Málaga (Spain). :coffee: :dragon_face:

Source code

This an example of "source code".

public class HelloWorld {
  public static void main(String[] args){
    System.out.println("Hello World!");
    }
}

System.out.println("Hello World!");shows the string "Hello World!" on the screen.

Compile

To compile the any programs of this repository inside your terminal type the following:

javac ProgramName.java

Execute

To execute the program, type this:

java ProgramName