Help Center›FreeBASIC
__FB_VER_MINOR__keyword
Intrinsic define (macro value) set by the compiler
Syntax
__FB_VER_MINOR__
Description
__FB_VER_MINOR__ will return the minor version of FreeBASIC currently being used. For FreeBASIC version 0.90.1, for example, the minor version number is 90.Remarks
Differences from QB
- New to FreeBASIC
See also
Example
Dim fbMajorVersion As Integer
Dim fbMinorVersion As Integer
Dim fbPatchVersion As Integer
fbMajorVersion = __FB_VER_MAJOR__
fbMinorVersion = __FB_VER_MINOR__
fbPatchVersion = __FB_VER_PATCH__
Print "Welcome to FreeBASIC " & fbMajorVersion & "." & fbMinorVersion & "." & fbPatchVersion
Reference
- Documented in KeyPgDdFBVerMinor.html