[lang-ref] ( get_first_element ) ( bash )

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