i need a tiny program like powerbasic for compiling basic applications that runs on the console of windows (tiny, so microsoft express edition is not an option). What do you recomend me?
8 Answers
You can use Microsoft's Visual Basic compiler from the command prompt:
vbc.exe Source.vb
The compiler is part of the .NET Framework installation and is located in
%SystemRoot%\Microsoft.NET\Framework\<Framework version>\vbc.exe

- 172,527
- 53
- 255
- 316
FreeBASIC is a free/open source (GPL), 32-bit BASIC compiler[1] for Microsoft Windows, protected-mode DOS (DOS extender), Linux, FreeBSD and Xbox.
OS DOS, FreeBSD, Linux, Microsoft Windows License GNU GPL, Standard libraries licensed under the GNU LGPL

- 145
- 8
Quick Basic compiler link I found using search:
http://www.qbcafe.net/qbc/english/download/compiler/qbasic_compiler.shtml
QBasic http://www.qbcafe.net/qbc/english/download/compiler/qbasic_compiler.shtml Best BASIC programming environment ever in my opinion (VisualBasic and Real Basic don't count but they are equally awesome)

- 452
- 3
- 14
JustBasic is free, small, and wonderful! And the users in the forums are extremely friendly and helpful! http://www.justbasic.com (I'm not sure if it's open source though... but it IS free)

- 3,469
- 2
- 17
- 29
I use QB64 a 64-bit compiler for Windows XP 7 8. Compiles most (or easily converted) QuickBasic 4.5 programs.

- 11
- 1
-
I meant to say QuickBasic 4.5 and on. – William Gove Jan 18 '15 at 03:43
And then there is XBasic
XBasic is a variant of the BASIC programming language
http://xbasic.sourceforge.net/
Both mentioned FOSS variants can compile for Windows
Hope it helps

- 145
- 8