Right now the "private" command returns "Nothing" type. When used with a single (string) argument - it could return the local variable reference, allowing you to initialize local scoped variables like this:
private "_my" = [code];
Instead of current:
private "_my";
_my = [code];