The Meson Build System http://mesonbuild.com/
 
 
 
 
 
 

10 lines
168 B

public class Beer : Object {
public string flavor {
get;
construct;
}
public Beer(string flavor) {
Object(flavor: flavor);
}
}