QB64.org Forum
Active Forums => QB64 Discussion => Topic started by: jessicajones 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
-
Over here it is apostrophe $INCLUDE:
'$include:'dostime.bas'
'$include:'fbgfx.bi'
More on it at http://www.qb64.org/wiki/$INCLUDE (http://www.qb64.org/wiki/$INCLUDE)
-
thx
working!!