Difference between revisions of "Reset"
Jump to navigation
Jump to search
(Created page with "In Mini Micro, the <c>reset</c> command has several effects: # Clears the current program from memory. # Clears all global variables, except the ones defined at startup....") |
m |
||
Line 3: | Line 3: | ||
# Clears the current program from memory. | # Clears the current program from memory. | ||
# Clears all global variables, except the ones defined at startup. | # Clears all global variables, except the ones defined at startup. | ||
− | # Resets <c>[[env]].importPaths</c> to | + | # Resets <c>[[env]].importPaths</c> to <c>[".", "/usr/lib", "/sys/lib"]</c>. |
# Prints the message "Program source cleared and reset" | # Prints the message "Program source cleared and reset" | ||
Revision as of 04:49, 20 January 2021
In Mini Micro, the reset
command has several effects:
- Clears the current program from memory.
- Clears all global variables, except the ones defined at startup.
- Resets
env.importPaths
to[".", "/usr/lib", "/sys/lib"]
. - Prints the message "Program source cleared and reset"
reset
is defined in /sys/startup.ms
.