Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

New parser in seq 0.11.0 does not support backslash line continuation in print statements. #256

Open
ghuls opened this issue Apr 19, 2022 · 0 comments

Comments

@ghuls
Copy link
Contributor

ghuls commented Apr 19, 2022

$ ../seq/seq-0.10.3/bin/seqc run test_backslach.seq
ABC DEFGHI JKL
ABC DEFGHI JKL

$ ../seq/seq-0.11.0/bin/seqc run test_backslach.seq
test_backslach.seq:7:15: error: syntax error, unexpected '\', expecting <NAME>, <EOL>, <SPACE>.

$ cat test_backslach.seq
s = "ABC DEF" \
    "GHI JKL"

print(s)

print(
    "ABC DEF" \
    "GHI JKL"
)
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant