I'm not using GOSUB functions because they can't take any arguments at all in the first place, plz correct me if im wrong
Here's the code I'm having trouble with:
'---WINDOW HANDLER--- DEF MAKEWINDOW(XSIZE,YSIZE,PROGID) PROGRAMSXY[PROGID,0]=199 PROGRAMSXY[PROGID,1]=119 FOR E=119 TO 139 STEP 1 GLINE 199,E,199+XSIZE,E NEXT END '---TEST PROGRAM--- DEF TEST(ID) MAKEWINDOW(100,100,ID) ENDNote: this is just a snippet of the program, not the entire program. There's a syntax error on line 107 (the call to MAKEWINDOW), and removing the last 2 arguments fixes it. Any suggestions?