01-26-2024, 05:16 PM
(This post was last modified: 01-26-2024, 05:17 PM by TerryRitchie.)
Code: (Select All)
PRINT Event
FUNCTION Event# (x AS DOUBLE)
'code here
Event = 1000
END FUNCTION
You can't declare a function AS DOUBLE, you must instead use the type identifier as shown above.
Update: Steve beat me to it my mere seconds