
END is the standard BASIC instruction to terminate programs. Also in the Avisaro Scripting Language, END causes the program to stop immediately.
This program demonstrates the effect of END:
print "Hello World" end print "This line will never be printed"
The task that runs the BASIC VM inside an RTOS is terminated when a program ends. END has the same effect as the program has executed its last line.