summaryrefslogtreecommitdiffstats
path: root/test cases/vala/16 mixed dependence/app.vala
blob: 5b545436b0aa4f5fdcc24e8d155fcd7e2b5cf09d (plain)
1
2
3
4
5
6
7
namespace App {
    public static int main(string[] args) {
        var mixer = new Mixer();
        print("Current volume is %u\n", mixer.get_volume());
        return 0;
    }
}