# Java Coding

## Resources

### IDEs

* [Eclipse](https://www.eclipse.org/downloads/)
* [IntelliJ IDEA](https://www.jetbrains.com/idea/)

## Examples

### Hello World

```java
public class Hello { // the file name here would be Hello.java
    public static void main(String[] args){
        System.out.println("Hello hackers!"); // println prints with a new line
    }
}
```
