Board index » delphi » Qbasic -> Pascal
grey...@mwci.net (Brian D. Southwood)
![]() Delphi Developer |
Sat, 10 Oct 1998 03:00:00 GMT
|
grey...@mwci.net (Brian D. Southwood)
![]() Delphi Developer |
Sat, 10 Oct 1998 03:00:00 GMT
Qbasic -> PascalI was wondering if there was a program out there that could translate a Thank You |
Dr John Stockto
![]() Delphi Developer |
Wed, 14 Oct 1998 03:00:00 GMT
Re:Qbasic -> PascalIn article <4ljf3p$...@hihat.mwci.net> in comp.lang.pascal.misc, "Brian QuoteD. Southwood" <grey...@mwci.net> wrote: ' Q B a s i c G o r i l l a s ' ' Copyright (C) Microsoft Corporation 1990 ' Does Bill Gates know what you're up to? he can probably afford more |
parent christop
![]() Delphi Developer |
Fri, 16 Oct 1998 03:00:00 GMT
Re:Qbasic -> PascalIn article RRslxJAhbggxE...@merlyn.demon.co.uk, Dr John Stockton <j...@merlyn.demon.co.uk> writes: Quote> In article <4ljf3p$...@hihat.mwci.net> in comp.lang.pascal.misc, "Brian The idea of translating QBasic into Pascal already came to my mind, I don't know if anyone out there has already written a program to translate Problems : 1) QBasic (as any other BASIC language) can use variables which have not been 2) The GOSUB statement is a typically BASIC statement and can't easily be If no program exists to translate QBasic into Pascal, you will have to do Bye. Christophe. Ne perdez pas votre temps visiter cette page car c'est la plus |
Osmo Ronkan
![]() Delphi Developer |
Sun, 18 Oct 1998 03:00:00 GMT
Re:Qbasic -> PascalIn article <RRslxJAhbggxE...@merlyn.demon.co.uk>, Quote>In article <4ljf3p$...@hihat.mwci.net> in comp.lang.pascal.misc, "Brian Also I do not see anything wrong in converting a program. Osmo |
Osmo Ronkan
![]() Delphi Developer |
Sun, 18 Oct 1998 03:00:00 GMT
Re:Qbasic -> PascalIn article <4m1sen$...@netserver.univ-lille1.fr>, Quoteparent christophe <par...@ens.lifl.fr> wrote: Quote>2) The GOSUB statement is a typically BASIC statement and can't easily be emulate: Program Lets_eat_spaghetti; label sub; Begin Write('Going sub for the second time ..'); Writeln('Exiting program'); sub: Writeln(' Returning from the subroutine'); End. Turbo Pascal manual says that one cannot touch SP, but I think that Osmo |
woj..
![]() Delphi Developer |
Sun, 18 Oct 1998 03:00:00 GMT
Re:Qbasic -> PascalQuote>In article <RRslxJAhbggxE...@merlyn.demon.co.uk>, Microsoft... Anyway, translating a program is not a copyright violation unless you intend Besides, the original posting was about how to convert QBasic code into -- |
@rmin.ne
![]() Delphi Developer |
Mon, 19 Oct 1998 03:00:00 GMT
Re:Qbasic -> PascalQuote>And why would anyone want to have a gorilla.pas? treasures of DOS 5, so a Pascal version would be just fine. Two oversized monkeys throwing exploding bananas at each other-- Regards, |
s..
![]() Delphi Developer |
Mon, 19 Oct 1998 03:00:00 GMT
Re:Qbasic -> PascalQuoteIn article <1996May1.213922.23...@arl.mil>, woj...@satcom.kaiserslautern.army.mil writes: Quote>Anyway, translating a program is not a copyright violation unless you intend ;-) Quote>-- -* Stephen *- |
Rune Mobe
![]() Delphi Developer |
Tue, 20 Oct 1998 03:00:00 GMT
Re:Qbasic -> PascalQuoteIn article <960502.112113.20...@banshee.uunet.ca>, @rmin.net wrote: Anyway, I think it's better to rewrite the darn thing from scratch, and -- |
Phreaked of SkismWar
![]() Delphi Developer |
Wed, 21 Oct 1998 03:00:00 GMT
Re:Qbasic -> PascalQuotepar...@ens.lifl.fr (parent christophe) wrote: |
J. Szamosfal
![]() Delphi Developer |
Sat, 24 Oct 1998 03:00:00 GMT
Re:Qbasic -> PascalQuoteparent christophe (par...@ens.lifl.fr) wrote: : QBasic into Pascal, but I know it's not very easy. : Problems : : 1) QBasic (as any other BASIC language) can use variables which have not been Nope. You can set up a table for variables, reserve some space and fill : 2) The GOSUB statement is a typically BASIC statement and can't easily be Ummmm, procedure/function calls are almost equivalent of GOSUB / RETURN. |