Hi,
In other languages like C there are variables/macros that get run when you compile/build not when you execute.
For example printf(“File=%s,line=%s”,__FILE__,__LINE__);
the __FILE__ and __LINE__ values are evaluated at compile time
there are other things directives/macros that get run at compile time.
it allows you to do things like put the build time, or version number into the code.
Does corona have anything like this?
I would like to have an ABOUT scene where it has a version number and build date time, and these should be evaluated automatically when I build the code.
thanks