aboutsummaryrefslogtreecommitdiffstats
path: root/tests/in/values.qface
blob: 3b7035d82743d5cdb3976572ed7ee9759c31afd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module values 1.0

interface Namespace {
    int intValue = "99"
    real realValue = "0.99"
    string message = "foo"
    Person person = '{ name: "Hello", age: 101 }'
}

struct Person {
    string name = "hello";
    int age = "99";
}