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

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

    return list;
}