No OOP?

New to FreeBASIC? Post your questions here.
Post Reply
kip
Posts: 2
Joined: Apr 25, 2019 16:40

No OOP?

Post by kip »

Can I create, compile and execute an offline program with only Free Basic (and an appropriate IDE),
but without any OOP or other external programming code? My program is very simple, but does input
a text file that has uniform records, one per line.
Imortis
Moderator
Posts: 1924
Joined: Jun 02, 2005 15:10
Location: USA
Contact:

Re: No OOP?

Post by Imortis »

FreeBASIC's OOP (Object Oriented Programming) features are completely optional. You don't have to use them if you don't want to.
badidea
Posts: 2591
Joined: May 24, 2007 22:10
Location: The Netherlands

Re: No OOP?

Post by badidea »

kip wrote:Can I create, compile and execute an offline program with only Free Basic (and an appropriate IDE),
but without any OOP or other external programming code? My program is very simple, but does input
a text file that has uniform records, one per line.
Yes, on al parts of the question. An IDE is not even required. Notepad + command line is sufficient.
Tourist Trap
Posts: 2958
Joined: Jun 02, 2015 16:24

Re: No OOP?

Post by Tourist Trap »

kip wrote:Can I create, compile and execute an offline program with only Free Basic (and an appropriate IDE),
but without any OOP or other external programming code? My program is very simple, but does input
a text file that has uniform records, one per line.
Hi kip,

yes you can use FB this way. You can then take profit of the abundant set of examples of the Visual Basic galaxy. When it comes to VBA, or VB6, without OOP, FB is nearly 100% compatible. (That's what I do in many cases)
Post Reply