summaryrefslogtreecommitdiffstats
path: root/test cases/vala/18 vapi consumed twice/app.vala
blob: cd94a42b92bc1c5df0cf206ef96a3cbc54ed3c0b (plain)
1
2
3
4
5
6
7
8
9
10
11
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;
    }
}