This page explains how to include other files in a LunarBasic program.
Import is handled before parsing. It pulls another LunarBasic source file into the current one.
Import "relative-or-absolute-path.lb"
The complete built-in runtime reference now lives in the dedicated System Functions help section, with a top-level overview page and separate detail pages for each function.
For window setup, use Graphics. It can create or resize the window and can also enter borderless fullscreen mode with its optional third argument.
For plain text stage files, use OpenFile, ReadLine, EndOfFile, and CloseFile.
For in-game text entry, use StartTextInput, GetTextInput$, SetTextInput, ClearTextInput, and StopTextInput.
For user-defined objects created with New, use Free when you are done with them.