1 2 3 4 5 6 7
// -*- rust -*- type list = tag(cons(int,@list), nil()); fn main() { cons(10, @cons(11, @cons(12, @nil()))); }