fgl_getversion() returns the version number of the 4GL runtime library currently in use. It returns a CHAR(60) which is the build version number:
MAIN
DEFINE msg CHAR(60)
LET msg = "You use: ", fgl_getversion()
CALL fgl_message_box(msg)
END MAIN