robhagemans / pcbasic

PC-BASIC - A free, cross-platform emulator for the GW-BASIC family of interpreters
http://www.pc-basic.org
Other
393 stars 48 forks source link

Converter adds a space between `FN` and other token keywords #193

Closed robhagemans closed 2 years ago

robhagemans commented 2 years ago

Converter adds a space between FN and other token keywords

Problem When FN is followed by another keyword token (which, incidentally, is a syntax error), in the ASCII listing PC-BASIC separates them with a space. GW-BASIC does not.

Steps

  1. 10 FNPRINT
  2. LIST

Output (PC-BASIC) 10 FN PRINT

Expected (GW-BASIC) 10 FNPRINT

Notes

PC-BASIC version: 2.0.4 Operating system version: all

robhagemans commented 2 years ago

Fixed by a5031e6