Talk:Porting QuickBASIC programs to FreeBASIC

From GPWiki

Files:GUITutorial_warn.gif The Game Programming Wiki has moved! Files:GUITutorial_warn.gif

The wiki is now hosted by GameDev.NET at wiki.gamedev.net. All gpwiki.org content has been moved to the new server.

However, the GPWiki forums are still active! Come say hello.

Some more things that need to be changed:

Strings in DATA statements need to be enclosed by quotes:

DATA hola,adios must be changed to DATA "hola", "adios"

SHARED keyword cannot be used in subroutines. Shared variables must be declared in the main program or passed as parameters.