status = concept ( arg1 ) ;
list arg1
list status 1 The STATUS variable is set to $ACKNOWLEDGE
list status
The STATUS variable is set to $ACKNOWLEDGE
%ARGUMENT : Invalid arguments. Usage: status = concept ( arg1 ) ;
None
To execute the example below, press or modify the example to try different variations. // Inintially, our instance name is the same as our concept name puts self ; // Then, we change our instance name instantiate "me" ; // Here are all the components puts {"self = ", self }; puts {"self(1) = ",self(1) }; puts {"self(2) = ",self(2)}; puts {"self(3) = ",self(3)}; puts {"concept = ",concept }; puts {"instance = ",instance }; puts {"localhost = ",localhost }; puts {"localaddr = ", localaddr };