Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
b8cf9485
Commit
b8cf9485
authored
Apr 08, 2014
by
Paul Sokolovsky
Browse files
unix, windows: There's no "help" builtin.
parent
a12a0f78
Changes
2
Hide whitespace changes
Inline
Side-by-side
unix/main.c
View file @
b8cf9485
...
...
@@ -139,7 +139,6 @@ STATIC char *prompt(char *p) {
STATIC
void
do_repl
(
void
)
{
printf
(
"Micro Python build "
MICROPY_GIT_HASH
" on "
MICROPY_BUILD_DATE
"; UNIX version
\n
"
);
printf
(
"Type
\"
help()
\"
for more information.
\n
"
);
for
(;;)
{
char
*
line
=
prompt
(
">>> "
);
...
...
windows/main.c
View file @
b8cf9485
...
...
@@ -119,7 +119,6 @@ static char *prompt(char *p) {
static
void
do_repl
(
void
)
{
printf
(
"Micro Python build "
MICROPY_GIT_HASH
" on "
MICROPY_BUILD_DATE
"; Windows version
\n
"
);
printf
(
"Type
\"
help()
\"
for more information.
\n
"
);
for
(;;)
{
char
*
line
=
prompt
(
">>> "
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment