last keyword is used to loop control statement which immediately causes the current iteration of the loop to become the last. If a label given, then it comes of the loop by the label.
Syntax:
# Comes out of the current loop.
last
# Comes out of the loop specified by
# MY_LABEL
last MY_LABEL