Avisaro Online Documentation - Wiki
Impressum Kontakt Sitemap

END

Description

END is the standard BASIC instruction to terminate programs. Also in the Avisaro Scripting Language, END causes the program to stop immediately.

Example

This program demonstrates the effect of END:

print "Hello World"
end
print "This line will never be printed"

Remarks

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.