mirror of
https://github.com/micropython/micropython.git
synced 2026-01-09 05:30:27 +01:00
This improves REPL usage consistency across ports, by utilizing the pyexec code for the unix REPL. Only enabled when MICROPY_USE_READLINE == 1 (the default). Signed-off-by: Andrew Leech <andrew.leech@planetinnovation.com.au>
11 lines
127 B
Plaintext
11 lines
127 B
Plaintext
MicroPython \.\+ version
|
|
Type "help()" for more information.
|
|
>>> # basic REPL tests
|
|
>>> print(1)
|
|
1
|
|
>>> print(1)
|
|
1
|
|
>>> 2
|
|
2
|
|
>>>
|