What are some BASIC implementaions for Linux?

  • Thread starter Thread starter iamhere
  • Start date Start date
  • Tags Tags
    Linux
AI Thread Summary
The discussion centers around the desire for a simple programming language similar to MS QBasic, particularly for use on Linux. Participants suggest exploring FreeBASIC, an open-source BASIC compiler compatible with QBASIC, and running original QBASIC through WINE, a Windows compatibility layer for Linux. The conversation also touches on alternatives to BASIC, such as Python, which is praised for its extensive documentation and libraries, and the use of GTK+ for GUI development. While some express a preference for BASIC, others advocate for Python and Perl, highlighting their versatility and broader application in programming.
iamhere
Messages
6
Reaction score
0
I'd like a simple one, nothing complicated - something like MS QBasic, adapted a little to Linux would be fine.

Why doesn't everyone use BASIC?
 
Technology news on Phys.org
i learned QB when i was in high school, but i use C++ now. it can be edited at emacs with some pluge.
 
Look into FreeBASIC. Its a free open source BASIC compiler. Should be compatible with QBASIC. You may have luck with the original QBASIC by running it under a windows API for linux, like WINE.

Why doesn't everyone use BASIC?
A question that could potentially cause programming language bashing. But the answer to this, at least in part, depends on what you're trying to do and how efficiently you want it done.
 
iamhere said:
I'd like a simple one, nothing complicated - something like MS QBasic, adapted a little to Linux would be fine.

Why doesn't everyone use BASIC?

I never used basic but you could try python. Theres a lot of documentation out there for it and a lot of libraries. If you want GUI use GTK+ with python which is PyGTK. You should probably get glade if you want this (unless you want to write out the code of the GUI widgets and cross your fingers and hope its how you intended them to look).

You might also want to try pearl. I am not really a fan of basic, never really seen it any applications (thus I never used it), I would say python is the way to go.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
What percentage of programmers have learned to touch type? Have you? Do you think it's important, not just for programming, but for more-than-casual computer users generally? ChatGPT didn't have much on it ("Research indicates that less than 20% of people can touch type fluently, with many relying on the hunt-and-peck method for typing ."). 'Hunt-and-peck method' made me smile. It added, "For programmers, touch typing is a valuable skill that can enhance speed, accuracy, and focus. While...
I had a Microsoft Technical interview this past Friday, the question I was asked was this : How do you find the middle value for a dataset that is too big to fit in RAM? I was not able to figure this out during the interview, but I have been look in this all weekend and I read something online that said it can be done at O(N) using something called the counting sort histogram algorithm ( I did not learn that in my advanced data structures and algorithms class). I have watched some youtube...
Back
Top