As stated above, This is the main way to call a function
Do
ShowStatistics()
Loop
Function ShowStatistics()
Text 10,10,"Screen FPS = "
Text 10,30,"Ect"
Text 10,50,"Ect"
EndFunction
But you can also declair a Function as a Constant allthough this does not always work if Additional Paramiters are required.
#Constant ShowStats As ShowStatistics()
Do
ShowStats
Loop
Function ShowStatistics()
Text 10,10,"Screen FPS = "
Text 10,30,"Ect"
Text 10,50,"Ect"
EndFunction
This 2nd example turns a Function into a Constant so you dont need Brackets, Theres a better example of this
HERE where i use this method to make several commands from 1 function.
Everyone Be Cool, You, Be Cool.