print ("a is "||a);
type(a, string);
print("c is "||c);
a := 'a':
type(a, symbol);
unassign('c');
"a is Hello World"
true
"c is 3"
"a is a"
"c is c"