Files
Toy/scripts/small.toy

15 lines
173 B
Plaintext

var t: type = typeas [int];
var u: type = typeas [t];
var a: u;
t = typeas [float]; //redefnition
var b: u;
print typeof a; //<[<int>]>
print typeof b; //<[<float>]>