I have been challenged by a friend to write a QBasic compiler in QBasic.

Where can I find a language specification for the latest version of the language?

link|improve this question

77% accept rate
Do you mean QBasic 1.1 or QuickBasic 4.5? – Cody Gray Dec 18 '10 at 8:53
The challenge states the QBasic interpreter that shipped with the earlier versions of Windows. The compiler must run on that version of QBasic and must be capable of compiling itself. I guess that would mean QBasic 1.1. – Simon Johnson Dec 18 '10 at 8:58
You're in for quite a challenge, given that QBasic is an interpreted language and can't actually compile code. – Cody Gray Dec 18 '10 at 9:08
A bit of back story - the conversation came about because we lamented that QBasic didn't have a binary compiler that we could use at school. All our code had to be interpreted through QBasic, at the time I wished I'd had the ability to write a compiler in QBasic so I could actually produce binaries. This challenge is the fufil this childhood dream - make a compiler to boostrap Qbasic from an interpreted language to a compiled language. – Simon Johnson Dec 18 '10 at 9:47
2  
Funny thing is, the QBasic that shipped with MS-DOS is just a stripped down version of QuickBASIC (IIRC 4.0, possibly 4.5) that had the compiler, binary tools, and "quicklib" support removed. – Chris Charabaruk Jun 27 '11 at 7:35
feedback

1 Answer

Microsoft's QBasic IDE comes with fairly complete documentation of the language and provided routines. So far as I know, that is about as complete a specification as you'll find, but it should be enough to write a compiler for (most of) the language, aside from undocumented DOS-specific peek/poke magic.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.