Prime Checker - Gambas Typing CST Test
Loading…
Prime Checker — Gambas Code
Checks if numbers are prime.
FUNCTION isPrime(n AS Integer) AS Boolean
IF n < 2 THEN RETURN FALSE
FOR i = 2 TO Sqr(n)
IF n MOD i = 0 THEN RETURN FALSE
NEXT
RETURN TRUE
END FUNCTION
DIM nums AS INTEGER[] = [7,10,13]
FOR EACH n AS Integer IN nums
PRINT n; " is "; IIF(isPrime(n), "Prime", "Not Prime")
NEXTGambas 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.