Runtime vector for Geometry Dash using SPWN
// Create brand-new vector with a maximum length
vec = @vctr::create(5);
// Display vector
vec.display(15, 15);
// Wait some time
wait(0.5);
// Add values
vec.push(1);
vec.push(2);
vec.push(3);
// Wait 500 ms and pop value from vector
wait(0.5);
vec.pop();vec = @vctr::from([1, 2, 3, 4, 5]);
vec.display(15, 15);
wait(0.5);
vec.pop();