setContext
setContext(t_contextName) =>t
Description
Allows contexts to be saved incrementally, creating micro contexts from a session’s SKILL context.
To understand this, think of the SKILL interpreter space as being linear; the function call setContext sets markers along the linear path. Any SKILL files loaded between a setContext and a saveContext are saved in the file named in the saveContext call. This function can be used more than once during a session.
Arguments
|
Primary name of the binary file to which the context was saved used |
Value Returned
Examples
setContext("myContext")
=> t
load("mySkillCode.il")
=> t
defInitProc("myContext" 'myInit)
=> t
saveContext("myContext.cxt")
=> t
Related Topics
Return to top