Janice Caron wrote: > I would like to be able to allocate a dynamic array on the stack. > The following compiles, but does not achieve the desired effect: > > int n = 100; > scope array = new int[n]; Maybe this could be made to work as well: #int n = 100; #int[n] array; L.