mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
At this point, only a minimal number of operations are working, and after running any kind of source code, the 'result' is simply left on the VM's stack. Still, it's awesome to see it reach this point.
9 lines
271 B
C
9 lines
271 B
C
#include "toy_common.h"
|
|
|
|
//defined separately, as compilation can take several seconds, invalidating the comparisons of the given macros
|
|
static const char* build = __DATE__ " " __TIME__ ", incomplete Toy v2.x";
|
|
|
|
const char* Toy_private_version_build() {
|
|
return build;
|
|
}
|