Sounds interesting.
I don't think LINE INPUT accepts a given input limit, but I made a restricted input routine function that you can freely have/use/abuse.
- DavCode: QB64: [Select]
'========== 'KINPUT.BAS '========== 'Restricted keyboard INPUT$ routine. 'Limit how many characters you can enter. 'Coded by Dav, JAN/2021 a$ = KINPUT$(3, 3, "Enter up to 12 letters: ", 12) PRINT "You entered: "; a$ entry$ = "" 'add letter entered, if not over limitnum entry$ = entry$ + a$
That IS Weird Paul! Love him so much. Nice work m8.