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

  1. type String: java.lang.String;  
  2.   
  3. def display(message: String) {  
  4.     stdout.println(message);  
  5. }  
  6.   
  7. display("Hello World!!!");