kytschBASIC

Put down that phone!
Please view me on real computer.

POP
ARRAY, POSITION (OPTIONAL)

Removing an element from an array starting from the end of the array.

Example

DIM test$=("kytschBASIC","is","awesome!")

POP(test$)

FOR val$ IN test$

	PRINT val$

	PRINT " "

NEXT

LINE BREAK

DIM test$=("kytschBASIC","is","awesome!")

POP(test$, 1)

FOR val$ IN test$

	PRINT val$

	PRINT " "

NEXT

Output

kytschBASIC is 
kytschBASIC awesome!