| valuen |
| ... |
| value2 |
| value1 |
| ... |
| [value1, value2, ..., valuen] |
| ... |
next_int;
t1 = array_new(state, _int);
j = _int - 1;
for(; j >= 0; j--) {
t2 = stack_pop();
array_set(state, t1, j, t2);
}
cpu_perform_hook(state, c, BASIC_CLASS(array),
global->sym_from_literal, t1);
stack_push(t1);