endbasic 0.2.0

The EndBASIC programming language
Documentation
' EndBASIC
' Copyright 2020 Julio Merino
'
' Licensed under the Apache License, Version 2.0 (the "License"); you may not
' use this file except in compliance with the License.  You may obtain a copy
' of the License at:
'
'     http://www.apache.org/licenses/LICENSE-2.0
'
' Unless required by applicable law or agreed to in writing, software
' distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
' WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
' License for the specific language governing permissions and limitations
' under the License.

' Dumps all help messages for validation purposes.
'
' The interactive help messages are built into the interpreter as multiline
' raw strings and it is too easy to make mistakes when typing them (especially
' around line boundaries).  This dump serves to sanity-check that formatting
' works as intended.

PRINT "Output from HELP:"
HELP

PRINT "Output from HELP CLEAR:"
HELP CLEAR

PRINT "Output from HELP DIR:"
HELP DIR

PRINT "Output from HELP EDIT:"
HELP EDIT

PRINT "Output from HELP HELP:"
HELP HELP

PRINT "Output from HELP INPUT:"
HELP INPUT

PRINT "Output from HELP LIST:"
HELP LIST

PRINT "Output from HELP LOAD:"
HELP LOAD

PRINT "Output from HELP NEW:"
HELP NEW

PRINT "Output from HELP PRINT:"
HELP PRINT

PRINT "Output from HELP RENUM:"
HELP RENUM

PRINT "Output from HELP RUN:"
HELP RUN

PRINT "Output from HELP SAVE:"
HELP SAVE