a = [];a.push("hiya!");a.push("woot!");print(a);delete a[0];print(a); a = [];a.push("hiya!");a.push("woot!");print(a);a.splice(0, 1);print(a);
Standard input is empty
hiya!,woot! ,woot! hiya!,woot! woot!
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!