FutureBASIC
FutureBASIC is a programming language created in 1992. 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...
28Years Old | 20Users | ?Jobs |
- FutureBASIC ranks in the top 25% of languages
- the FutureBASIC wikipedia page
- FutureBASIC first appeared in 1992
- See also: basic, powerpc, c, zbasic, pascal, applescript
- Have a question about FutureBASIC not answered here? Email me and let me know how I can help.
Example code 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 )
Last updated August 9th, 2020