Tintware Documentation : Tint Programming Language : Tint Reference : Contexts : tint.contextSyntax#(tint.context) #(tint.context,%setup) #(tint.context,%setup,%forever) %setup optionally specifies the value to be evaluated once by the context. %forever optionally specifies the value to be repeatedly evaluated by the context. #(tint.context) will return the name of the current context. Otherwise, a new context will be created and it will be run. If %setup is specified, it will be evaluted once. If %forever is specified, it will be evaluated repeatedly until the context is freed. Syntax#(tint.context) context-0 #(def,r)#(tint.context,(#(def,r,#(tint.context))))#(r) context-4 #(tint.context,,(#(#(tint.context).free))) |