Game on Basic! + some tests, drawbitmap upd

This commit is contained in:
Андрей 2021-06-16 09:41:46 +04:00 committed by GitHub
parent 114eabe5aa
commit cc8fd24a10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 385 additions and 0 deletions

10
geopos/main.bas Normal file
View file

@ -0,0 +1,10 @@
SUB MAIN
IF ISLOCATIONAVAILABLE() THEN
PRINT "LAT:" + STR$(GETLATITUDE())
PRINT "LON:" + STR$(GETLONGITUDE())
ELSE
PRINT "GPS IS NOT AVAILABLE!"
END IF
END SUB