We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps (example 1)
INPUT A$
test
test2
GW-BASIC: A$ = "test" chr$(10) "test2" PC-BASIC: a$ = "test"
A$ = "test" chr$(10) "test2"
a$ = "test"
Steps (example 2) 1. 10 REM continuing Ctrl+J line 2. LIST
10 REM continuing
line
LIST
GW-BASIC:
10 REM continuing line
(this is a wrapped logical line) PC-BASIC:
10 REM continuingline
The text was updated successfully, but these errors were encountered:
fix issue #196 writing program lines with LF
5e25d7f
add tests for issue #196: typing in program line with line feed
5126ec7
remove editor swap file from type_program_with_line_feed
93edad4
Fixed by 93edad4
Sorry, something went wrong.
robhagemans
No branches or pull requests
Line feed Ctrl+J does not get read correctly in interactive mode
Steps (example 1)
INPUT A$
test
Ctrl+Jtest2
EnterGW-BASIC:
A$ = "test" chr$(10) "test2"
PC-BASIC:
a$ = "test"
Steps (example 2)
1.
10 REM continuing
Ctrl+Jline
2.
LIST
GW-BASIC:
(this is a wrapped logical line)
PC-BASIC:
The text was updated successfully, but these errors were encountered: