[lang-ref] ( get_last_element ) ( bash )

@test "get last element" {
	# ${items[-1]}
	items=(A B C D E)
	[ "${items[-1]}" = "E" ]
}