Sets a variable in the blackboard namespace
(vl-bb-set 'symbol value)
Arguments
A symbol naming the variable to be set.
Any value, except a function.
Return Values
The value you assigned to symbol.
Examples
Command: (vl-bb-set 'foobar "Root toot toot")
"Root toot toot"
Command: (vl-bb-ref 'foobar)
"Root toot toot"
vl-bb-ref function. Sharing Data Between Namespaces in the AutoLISP Developer's Guide for a description of the blackboard namespace.
The