aboutsummaryrefslogtreecommitdiff
path: root/examples/hello.sloth
blob: 7378cb17cc29d1d9b4f0e4a52f2fa0cf1c157f65 (plain)
1
2
3
4
5
6
7
8
9
10
11
fn test() [Int 3] {
    var list: [Int 3] = [9, 5, 7];

    vpushi(list, 3);
    vpushi(list, 3);
    vpushi(list, 3);
    vpushi(list, 5);

    return list;
}