The Meson Build System
http://mesonbuild.com/
9 lines
177 B
9 lines
177 B
9 years ago
|
package com.mesonbuild;
|
||
|
|
||
|
class Simple {
|
||
|
public static void main(String [] args) {
|
||
|
TextPrinter t = new TextPrinter("Printing from Java.");
|
||
|
t.print();
|
||
|
}
|
||
|
}
|