# Java++
Java++, adding additional syntactical sugar to vanilla Java.
It's called Java++ because, like C++, it addes more syntax to a base language while still
remaining compatible.
This project requires that you have installed my [python Java parser](https://github.com/raptor4694/JavaParser).
## Features
I have organized each feature into several 'categories'.
The main point about this is that this parser is modular - you can enable/disable most features on the fly with a special statement.
### Statements
#### The Import Statements
The `import` statement can now contain multiple comma-separated namespaces.
```java
import java.util.List, java.util.Map;
```
There is a new form of import statement called the `from-import` statement. This is a new statement which I stole from Python. It begins with the contextual keyword `from`. It allows you to import multiple names from a particular package, omitting the need to write that package over and over again.
Syntax:
This file has been truncated. show original