Top 1,000 Features Creators Resources Blog Explorer Download
GitHub icon

FutureBASIC

< >

FutureBASIC is an open source programming language created in 1992.

#1401on PLDB 32Years Old

FutureBasic is a free BASIC compiler for Apple Inc.'s Macintosh. It consists of an integrated development environment (IDE), editor, project manager, etc. for both PowerPC and Intel microprocessors. Read more on Wikipedia...


Example from Wikipedia:
BeginCFunction // Simple C function to add two integers long simple_add( long a, long b ) { long sum; sum = a + b; return (sum); } endC // Define C function so FB can see it toolbox fn simple_add ( long a, long b ) = long // Create little program to add 2 + 2 with the C function window 1 print fn simple_add ( 2, 2 ) do HandleEvents until ( gFBQuit )

Language features

Feature Supported Token Example
Comments ✓
// A comment
Line Comments ✓ //
// A comment
Semantic Indentation X

View source

- Build the next great programming language · About · Acknowledgements · Extensions · Day 630 · Donate · feedback@pldb.io