The Meson Build System
http://mesonbuild.com/
11 lines
147 B
11 lines
147 B
5 years ago
|
public class Badger : Object {
|
||
|
public string name {
|
||
|
get;
|
||
|
construct;
|
||
|
}
|
||
|
|
||
|
Badger() {
|
||
|
Object(name: "Joe");
|
||
|
}
|
||
|
}
|