Get a value on the stack.
1 auto ctx = new DukContext(); 2 3 ctx.push([1, 2, 3]); 4 5 assert([1, 2, 3] == ctx.get!(int[]));
See Implementation
Get a value on the stack.