1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-16 16:35:13 +00:00
qb64/source/global/version.bas

9 lines
277 B
QBasic
Raw Normal View History

DIM SHARED Version AS STRING
DIM SHARED BuildNum AS STRING
2017-01-21 00:56:50 +00:00
DIM SHARED AutoBuildMsg AS STRING
2017-12-29 14:10:37 +00:00
Version$ = "1.2"
'BuildNum format is YYYYMMDD/id, where id is a ever-increasing
'integer. If you make a change, update the date and increase the id!
2018-02-02 05:40:36 +00:00
BuildNum$ = "20180202/85"
2017-10-24 12:07:04 +00:00