I am not able to copy one (or more) class into a Namespace.
Let myClass be a Class
I tried :
NS←⎕NS 'myClass'
DOMAIN ERROR
The language reference:
Create Namespace: {R}←{X}⎕NS Y
In the first case, Y must be a simple character scalar, vector, matrix or a nested vector
of character vectors identifying zero or more workspace objects to be copied into the
namespace X. The identifiers in X and Y may be simple names or compound names
separated by '.' and including the names of the special namespaces '#', '##' and
'⎕SE'.
The namespace X is created if it doesn't already exist. If the name is already in use for
an object other than a namespace, APL issues a DOMAIN ERROR.
If X is omitted, an unnamed namespace is created.
The objects identified in the list Y are copied into the namespace X.