You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A user often works with a certain set of variables/functions and wants to store them between sessions (and load them by default).
A user works on two different projects and uses different environments in each of them..
A user does not like the default variable names and wants to redefine some of them.
Possible design:
Add save and load commands. Both take an optional string argument (session name)
save foo saves the current session (all variables and user-defined functions); load foo restores that session (on top of the current environment?).
If no name is given, save stores the current session under a default name. On startup, this default session is re-loaded. Similarly, load retrieves the last-saved session.
The text was updated successfully, but these errors were encountered:
Use cases:
Possible design:
save
andload
commands. Both take an optional string argument (session name)save foo
saves the current session (all variables and user-defined functions);load foo
restores that session (on top of the current environment?).save
stores the current session under a default name. On startup, this default session is re-loaded. Similarly,load
retrieves the last-save
d session.The text was updated successfully, but these errors were encountered: