Quick description
MiniLang is yet another scripting language written in Java programming language. Main features :
- Functional language
- Strongly interact with Java
- XML integration
- Statickly typed
- Integrated template engine like Velocity or Smarty...
- Connected to EMF (Eclipse Modeling Framework)
- Byte code generation
- ...
Hello world
- type String: java.lang.String;
- def display(message: String) {
- stdout.println(message);
- }
- display("Hello World!!!");