BASIC relies on a sequential script of instructions. The closest you will get to threading is a series of tight self-contained functions, such as:
do
ship()
enemies()
bullets()
gamelogic()
Sync()
loop
That said, it's not very close to threading at all, but at least you know where you are at every step