We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 220be8a commit b867949Copy full SHA for b867949
micropython/main.py
@@ -31,4 +31,5 @@
31
while True:
32
line = gets().strip()
33
if len(line) > 0:
34
- pico.parse_and_process(line)
+ for _line in line.split(";"):
35
+ pico.parse_and_process(_line)
0 commit comments