Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is a good BASIC compiler for Mac OSX? [closed]

Tags:

macos

basic

What is a good BASIC compiler for Mac OSX?

like image 232
uckabee Avatar asked Nov 05 '10 22:11

uckabee


4 Answers

  • REALbasic
  • Objective-Basic
  • PureBasic
  • Basic for Qt (free)
  • Chipmunk Basic (free)

Most of these have trial versions that you can check out for at least 30 days before deciding to buy. REALbasic is an awesome tool, and I've wanted to try Objective-Basic for a long time. KBasic looks promising, especially considering the price.

And then there's always the option of running BSD/Unix/Linux-based tools in OS X, as well as Windows programs if you have an Intel-based Mac.

like image 93
Cody Gray Avatar answered Nov 08 '22 12:11

Cody Gray


I would have to say REALBasic.

like image 44
RCProgramming Avatar answered Nov 08 '22 10:11

RCProgramming


PureBasic is probably the most full featured but it is a lower level language. REALbasic looks good but I've had horrible experience with it trying to do anything "real".

like image 3
Mitchell V Avatar answered Nov 08 '22 11:11

Mitchell V


QB64 isn't exactly pretty, but it's a dialect of QBasic, with mac, windows, and linux IDEs, and it can (with tie ins to eclipse) compile for android as well. The results, however, can be very pretty.

http://qb64.net/forum/index.php

It's also worth noting that it has expanded the QB command list, is 64-bit clean, and can do some stunning graphics, network operations, and more.

As a reminder: QBasic is a structured basic with limited variable scoping (subroutine or program-wide), which can optionally use line numbers.

I have compiled old QBasic code unmodified provided it didn't do file access, and that's just a matter of changing the directory separator...

like image 1
aramis Avatar answered Nov 08 '22 12:11

aramis