Author Topic: compiling FreeBasic file  (Read 2963 times)

0 Members and 1 Guest are viewing this topic.

Offline jessicajones

  • Newbie
  • Posts: 12
    • View Profile
compiling FreeBasic file
« on: June 20, 2020, 11:08:44 am »
Hi

I'm trying to compile a BASIC file, made in FreeBasic, in QB64.

The following statements give syntax error:

#include "dostime.bas"
#include "fbgfx.bi"

Is "include" supported in QB64 or how to do these statements in QB64?

thx

FellippeHeitor

  • Guest
Re: compiling FreeBasic file
« Reply #1 on: June 20, 2020, 11:28:32 am »
Over here it is apostrophe $INCLUDE:

Code: QB64: [Select]
  1. '$include:'dostime.bas'
  2. '$include:'fbgfx.bi'

More on it at http://www.qb64.org/wiki/$INCLUDE
« Last Edit: June 20, 2020, 11:29:49 am by FellippeHeitor »

Offline jessicajones

  • Newbie
  • Posts: 12
    • View Profile
Re: compiling FreeBasic file
« Reply #2 on: June 20, 2020, 11:29:33 am »
thx

working!!