1. Home
  2. /
  3. Gambas
  4. /
  5. Todo List

Todo List - Gambas Typing CST Test

Loading…

Todo List — Gambas Code

Maintains a simple todo list with add and remove functionality.

DIM todos AS NEW Collection

PROCEDURE addTask(task AS String)
	todos.Add(task)
	FOR EACH t AS String IN todos
		PRINT t;
	NEXT
END PROCEDURE

PROCEDURE removeTask(index AS Integer)
	todos.RemoveAt(index)
	FOR EACH t AS String IN todos
		PRINT t;
	NEXT
END PROCEDURE

' Simulate actions
addTask("Buy milk")
addTask("Write Gambas code")
removeTask(0)

Gambas Language Guide

Gambas is a free, object-oriented programming language and development environment based on BASIC, designed primarily for Linux. It allows rapid development of graphical, database, and console applications, with a visual IDE similar to Visual Basic.

Primary Use Cases

  • ▸Developing Linux GUI applications
  • ▸Rapid prototyping for desktop software
  • ▸Database applications with MySQL, PostgreSQL, or SQLite
  • ▸Educational purposes for learning programming
  • ▸Small utility and productivity tools on Linux

Notable Features

  • ▸Visual IDE with drag-and-drop form designer
  • ▸Object-oriented extensions to BASIC
  • ▸Database and SQL support
  • ▸Multimedia and networking libraries
  • ▸Cross-platform support via Linux and some BSDs

Origin & Creator

Created by Benoît Minisini in 1999 as an open-source alternative to Visual Basic for Linux.

Industrial Note

Gambas is primarily used for rapid prototyping, educational projects, and Linux desktop applications where cross-platform or Windows compatibility is not required.

More Gambas Typing Exercises

Gambas Counter and Theme ToggleGambas Random Number GeneratorGambas Dice RollerGambas Countdown TimerGambas Prime CheckerGambas Temperature ConverterGambas Shopping CartGambas Name GreetingGambas Stopwatch

Practice Other Languages

CReactPythonC++RustTypeScriptKotlinPHPJavaC#RubyMqlCqlN1qlCypher