2) Complete IDE Guide

Back to Getting Started


IDE Areas and Their Purpose

The Main File Tab Concept (Important)

When your project has multiple files, one tab is treated as the main file for running/debugging.

How to Mark a Tab as Main File

  1. Open the file you want to use as startup.
  2. Right-click that file's tab header.
  3. Click Mark as main file in the tab context menu.

After marking, the tab header shows a star (★). That is the visual indicator for the current main file.

How to Unset or Change Main File

Practical Rule

Before running, verify that the tab containing your intended entry code has the star marker.

Run vs Debug (What Is the Difference?)

Both actions compile and launch your program, but they are used for different goals.

If your program is behaving unexpectedly, Debug is usually the right tool.

Debug Controls and Step Buttons

When debugging and execution is paused at a breakpoint, these controls become important:

Simple Mental Model for Step Buttons

Suggested Multi-File Workflow

  1. Create a startup file (for example, main.lb).
  2. Keep startup logic there (window setup, high-level loop, shutdown).
  3. Move reusable logic into other files and import as needed.
  4. Keep main.lb as the marked main file tab.

Read Errors Efficiently

Breakpoints and Debugging Basics

IDE Habits That Save Time


Navigation: Previous: First Launch and First Run | Outline | Next: Programming Fundamentals