The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
302 B
12 lines
302 B
8 years ago
|
namespace App {
|
||
|
public static int main(string[] args) {
|
||
|
var person = new Person();
|
||
|
print("Favorite beer of \"%s\" is %s\n", person.name, person.favorite_beer.flavor);
|
||
|
|
||
|
var beer = new Beer("tasty");
|
||
|
print("This beer is %s\n", beer.flavor);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
}
|