can someone please help me i cant get this to work
DIM Board$
FOR row = 1 TO 3
FOR col = 1 TO 3
PRINT Board$(col) + "| _ ";
NEXT col
PRINT "|"
NEXT row
PRINT "This is a game of Tic Tac Toe. Please type in the letter O for the"
PRINT "Second player and not the number."
INPUT "If you are the first player please type in X or O for the second player"; Player$
INPUT "Please type in 1 for the 1st position, 2 for the second etc."; position
DO WHILE Player$ <> Q$
IF Player$ = X$ THEN
SELECT CASE position
CASE 1
position = 1
LOCATE 1, 3
PRINT "X"
CASE 2
position = 2
LOCATE 1, 7
PRINT "X"
CASE 3
position = 3
LOCATE 1, 11
PRINT "X"
CASE 4
positon = 3
LOCATE 2, 3
PRINT "X"
CASE 5
position = 4
LOCATE 2, 7
PRINT "X"
CASE 6
position = 5
LOCATE 2, 11
PRINT "X"
CASE 7
position = 6
LOCATE 3, 3
PRINT "X"
CASE 8
position = 7
LOCATE 3, 7
PRINT "X"
CASE ELSE
position = 8
LOCATE 3, 11
PRINT "X"
END SELECT
ELSEIF Player$ = Q$ THEN
END
END IF
IF Player$ = O$ THEN
INPUT "Please type in 1 for the 1st position, 2 for the second etc."; position
SELECT CASE position
CASE 1
position = 1
LOCATE 1, 3
PRINT "O"
CASE 2
position = 2
LOCATE 1, 7
PRINT "O"
CASE 3
position = 3
LOCATE 1, 11
PRINT "O"
CASE 4
positon = 3
LOCATE 2, 3
PRINT "O"
CASE 5
position = 4
LOCATE 2, 7
PRINT "O"
CASE 6
position = 5
LOCATE 2, 11
PRINT "O"
CASE 7
position = 6
LOCATE 3, 3
PRINT "O"
CASE 8
position = 7
LOCATE 3, 7
PRINT "O"
CASE ELSE
position = 8
LOCATE 3, 11
PRINT "O"
END SELECT
ELSEIF Player$ = Q$ THEN
END
END IF
LOOP