Board index » delphi » Qbasic & Pascal
landm...@vcn.bc.ca (Scott Phung)
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
|
landm...@vcn.bc.ca (Scott Phung)
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
Qbasic & Pascal ok, i just migrated to the Turbo Pascal (7.0) world. Can anyone tell me By what i've learned, Qbasic seems to be EASIER. And would anyone be as of so kind to post or email me commands in Qbasic and Thanks, Scott. |
Victor Do
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
Re:Qbasic & PascalQuoteScott Phung (landm...@vcn.bc.ca) wrote: : what's the MAJOR differences between the two? A text/help file would be nice. : By what i've learned, Qbasic seems to be EASIER. : And would anyone be as of so kind to post or email me commands in Qbasic and : Thanks, Scott. Scott, i did the same thing, probably because i didn't see anywhere to expand const and manipulate it as to draw a checker board on the screen. that's all i want to type right now, but i'm sure many other people will victor dods |
Rick Antho
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
Re:Qbasic & PascalQuoteScott Phung (landm...@vcn.bc.ca) wrote: Here is a quick brief overview... (Forget the GOTO and GOSUB - Commands, For The Most Part They No (FOR .. NEXT LOOPS) Basic For I& = 1 To 100 Pascal Var I: Integer; { Declare the variable } For I := 1 To 100 Do { Use the Do - Begin - End Blocks } (IF..THEN LOOPS) Basic If A = B Then Goto Blablabla If A = B Then Pascal If A = B Then Blablabla { Instead of the GOTO, you call the If A = B Then { Begin..End } Etc.. If you want some more examples, give me actual questions and/or Regards, ____________________ IBM Team [OS/2] World Wide Web: http://www.tiac.net/users/dsgpsoft |