Wonder if anyone can help, I'm trying to follow the start of the AppGameKit 2 tutorial guide from Alastair Stewart and its basically the very first project 'Hello world'. When i'm going to run the program, it doesnt come up printing Hello world, it just comes up with a counter that goes up to 30 then back down again
This is the code that is from the book with the print function modified for the activity
// Project: FirstProject
// Created: 2017-01-12
// show all errors
SetErrorMode(2)
// set window properties
SetWindowTitle( "FirstProject" )
SetWindowSize( 1024, 768, 0 )
// set display properties
SetVirtualResolution( 1024, 768 )
SetOrientationAllowed( 1, 1, 1, 1 )
SetSyncRate( 30, 0 ) // 30fps instead of 60 to save battery
UseNewDefaultFonts( 1 ) // since version 2.0.22 we can use nicer default fonts
do
Print("Hello world")
Sync()
loop
I cant see anything wrong with it and why it would show a counter instead of Hello world? anyone else have this problem, it's basically simple code so weird why its doing numbers,
Cheers Steven